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

ruby-changes:38779

From: hsbt <ko1@a...>
Date: Sat, 13 Jun 2015 11:35:44 +0900 (JST)
Subject: [ruby-changes:38779] hsbt:r50860 (trunk): * ext/bigdecimal/bigdecimal.gemspec: Fix require paths for released gem.

hsbt	2015-06-13 11:35:25 +0900 (Sat, 13 Jun 2015)

  New Revision: 50860

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50860

  Log:
    * ext/bigdecimal/bigdecimal.gemspec: Fix require paths for released gem.
      [fix GH-929] Patch by @voxik
    * ext/io/console/io-console.gemspec: ditto.

  Modified files:
    trunk/ChangeLog
    trunk/ext/bigdecimal/bigdecimal.gemspec
    trunk/ext/io/console/io-console.gemspec
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 50859)
+++ ChangeLog	(revision 50860)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sat Jun 13 11:35:19 2015  SHIBATA Hiroshi  <hsbt@r...>
+
+	* ext/bigdecimal/bigdecimal.gemspec: Fix require paths for released gem.
+	  [fix GH-929] Patch by @voxik
+	* ext/io/console/io-console.gemspec: ditto.
+
 Sat Jun 13 00:45:08 2015  Marc-Andre Lafortune  <ruby-core@m...>
 
 	* lib/prime.rb: Return sized enumerators.
Index: ext/bigdecimal/bigdecimal.gemspec
===================================================================
--- ext/bigdecimal/bigdecimal.gemspec	(revision 50859)
+++ ext/bigdecimal/bigdecimal.gemspec	(revision 50860)
@@ -12,7 +12,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/bigdecimal/bigdecimal.gemspec#L12
   s.email = "mrkn@m..."
   s.description = "This library provides arbitrary-precision decimal floating-point number class."
   s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
-  s.require_path = %[.]
+  s.require_path = %[lib]
   s.files = %w[
     bigdecimal.gemspec
     bigdecimal.c
Index: ext/io/console/io-console.gemspec
===================================================================
--- ext/io/console/io-console.gemspec	(revision 50859)
+++ ext/io/console/io-console.gemspec	(revision 50860)
@@ -12,7 +12,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/io/console/io-console.gemspec#L12
   s.required_ruby_version = ">= 2.0.0"
   s.homepage = "http://www.ruby-lang.org"
   s.authors = ["Nobu Nakada"]
-  s.require_path = %[.]
+  s.require_path = %[lib]
   s.files = %w[console.c extconf.rb lib/console/size.rb]
   s.extensions = %w[extconf.rb]
   s.licenses = "ruby"

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

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