Skip to content

Commit a0cf0fb

Browse files
committed
merge revision(s) 50860: [Backport ruby#11249]
* ext/bigdecimal/bigdecimal.gemspec: Fix require paths for released gem. [fix rubyGH-929] Patch by @voxik * ext/io/console/io-console.gemspec: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@51177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent e25bb03 commit a0cf0fb

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Tue Jul 7 13:37:34 2015 SHIBATA Hiroshi <[email protected]>
2+
3+
* ext/bigdecimal/bigdecimal.gemspec: Fix require paths for released gem.
4+
[fix GH-929] Patch by @voxik
5+
* ext/io/console/io-console.gemspec: ditto.
6+
17
Fri Jul 3 21:54:46 2015 NAKAMURA Usaku <[email protected]>
28

39
* test/ruby/test_require.rb (TestRequire#test_loading_fifo_threading):

ext/bigdecimal/bigdecimal.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.email = "[email protected]"
1313
s.description = "This library provides arbitrary-precision decimal floating-point number class."
1414
s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
15-
s.require_path = %[.]
15+
s.require_path = %[lib]
1616
s.files = %w[
1717
bigdecimal.gemspec
1818
bigdecimal.c

ext/io/console/io-console.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.required_ruby_version = ">= 2.0.0"
1313
s.homepage = "http://www.ruby-lang.org"
1414
s.authors = ["Nobu Nakada"]
15-
s.require_path = %[.]
15+
s.require_path = %[lib]
1616
s.files = %w[console.c extconf.rb lib/console/size.rb]
1717
s.extensions = %w[extconf.rb]
1818
s.licenses = "ruby"

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.7"
22
#define RUBY_RELEASE_DATE "2015-07-07"
3-
#define RUBY_PATCHLEVEL 377
3+
#define RUBY_PATCHLEVEL 378
44

55
#define RUBY_RELEASE_YEAR 2015
66
#define RUBY_RELEASE_MONTH 7

0 commit comments

Comments
 (0)