From 7c9771be02ddc707fea8ec96089c8a100c59f806 Mon Sep 17 00:00:00 2001 From: hsbt Date: Fri, 1 Feb 2019 13:41:56 +0000 Subject: [PATCH] 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 --- lib/{ => bundler}/bundler.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename lib/{ => bundler}/bundler.gemspec (97%) diff --git a/lib/bundler.gemspec b/lib/bundler/bundler.gemspec similarity index 97% rename from lib/bundler.gemspec rename to 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|