[前][次][番号順一覧][スレッド一覧]

ruby-changes:68407

From: Nobuyoshi <ko1@a...>
Date: Tue, 12 Oct 2021 21:11:25 +0900 (JST)
Subject: [ruby-changes:68407] ff1f696d30 (master): [ruby/digest] Move digest.rb back under ext as the extension bundled library

https://git.ruby-lang.org/ruby.git/commit/?id=ff1f696d30

From ff1f696d300cdf2a7073ddec91846cd3aee103d8 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Mon, 6 Sep 2021 12:59:14 +0900
Subject: [ruby/digest] Move digest.rb back under ext as the extension bundled
 library

https://github.com/ruby/digest/commit/026ba7f361
---
 ext/digest/digest.gemspec | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/ext/digest/digest.gemspec b/ext/digest/digest.gemspec
index 8665e42e0f..381df92761 100644
--- a/ext/digest/digest.gemspec
+++ b/ext/digest/digest.gemspec
@@ -14,16 +14,31 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/ext/digest/digest.gemspec#L14
 
   spec.files         = [
     "LICENSE.txt", "README.md",
-    "ext/digest/bubblebabble/bubblebabble.c", "ext/digest/bubblebabble/extconf.rb", "ext/digest/defs.h",
-    "ext/digest/digest.c", "ext/digest/digest.h", "ext/digest/digest_conf.rb", "ext/digest/extconf.rb",
-    "ext/digest/md5/extconf.rb", "ext/digest/md5/md5.c", "ext/digest/md5/md5.h", "ext/digest/md5/md5cc.h",
-    "ext/digest/md5/md5init.c", "ext/digest/rmd160/extconf.rb", "ext/digest/rmd160/rmd160.c",
-    "ext/digest/rmd160/rmd160.h", "ext/digest/rmd160/rmd160init.c", "ext/digest/sha1/extconf.rb",
-    "ext/digest/sha1/sha1.c", "ext/digest/sha1/sha1.h", "ext/digest/sha1/sha1cc.h",
-    "ext/digest/sha1/sha1init.c", "ext/digest/sha2/extconf.rb", "ext/digest/sha2/lib/sha2.rb",
-    "ext/digest/sha2/sha2.c", "ext/digest/sha2/sha2.h", "ext/digest/sha2/sha2cc.h",
-    "ext/digest/sha2/sha2init.c", "ext/digest/test.sh", "ext/openssl/deprecation.rb",
-    "lib/digest.rb"
+
+    "ext/digest/defs.h", "ext/digest/digest.c", "ext/digest/digest.h",
+    "ext/digest/digest_conf.rb", "ext/digest/extconf.rb",
+    "ext/digest/lib/digest.rb",
+
+    "ext/digest/bubblebabble/bubblebabble.c",
+    "ext/digest/bubblebabble/extconf.rb",
+
+    "ext/digest/md5/extconf.rb", "ext/digest/md5/md5.c",
+    "ext/digest/md5/md5.h", "ext/digest/md5/md5cc.h",
+    "ext/digest/md5/md5init.c",
+
+    "ext/digest/rmd160/extconf.rb", "ext/digest/rmd160/rmd160.c",
+    "ext/digest/rmd160/rmd160.h", "ext/digest/rmd160/rmd160init.c",
+
+    "ext/digest/sha1/extconf.rb", "ext/digest/sha1/sha1.c",
+    "ext/digest/sha1/sha1.h", "ext/digest/sha1/sha1cc.h",
+    "ext/digest/sha1/sha1init.c",
+
+    "ext/digest/sha2/extconf.rb", "ext/digest/sha2/lib/sha2.rb",
+    "ext/digest/sha2/sha2.c", "ext/digest/sha2/sha2.h",
+    "ext/digest/sha2/sha2cc.h", "ext/digest/sha2/sha2init.c",
+
+    "ext/openssl/deprecation.rb",
+    "ext/digest/test.sh",
   ]
 
   spec.required_ruby_version = ">= 2.5.0"
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]