summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-01 13:41:56 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-01 13:41:56 +0000
commit7c9771be02ddc707fea8ec96089c8a100c59f806 (patch)
tree4f9a5743a10299efd0d1812086cfc253f413d1f2
parentadbdbff2df25865e8ba0453749097d960a2384b5 (diff)
Fixed gemspec location of bundler.
FileCollector of rbinstall.rb requires location of gemspec under the sub-direcotry with the same name as default gems. I forgot to fix it with r66867. [Bug #15582][ruby-core:91374] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/bundler/bundler.gemspec (renamed from lib/bundler.gemspec)2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.gemspec b/lib/bundler/bundler.gemspec
index f9d456204e..b229ab224d 100644
--- a/lib/bundler.gemspec
+++ b/lib/bundler/bundler.gemspec
@@ -5,7 +5,7 @@ begin
require File.expand_path("../lib/bundler/version", __FILE__)
rescue LoadError
# for Ruby core repository
- require File.expand_path("../bundler/version", __FILE__)
+ require File.expand_path("../version", __FILE__)
end
Gem::Specification.new do |s|