From f1581fe4b57a7d04930ca980e685a80a5701973f Mon Sep 17 00:00:00 2001 From: SHIBATA Hiroshi Date: Wed, 20 Feb 2019 19:31:32 +0900 Subject: [PATCH] Fixup r66984. Update the location of bundler gemspec. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bundler.gemspec | 2 +- spec/support/path.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundler.gemspec b/bundler.gemspec index eebc4ef53bb..56cb8e3ae17 100644 --- a/bundler.gemspec +++ b/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| diff --git a/spec/support/path.rb b/spec/support/path.rb index f85fbf330f2..ae7a8c5bbea 100644 --- a/spec/support/path.rb +++ b/spec/support/path.rb @@ -9,7 +9,7 @@ def root end def gemspec - @gemspec ||= root.join(ruby_core? ? "lib/bundler.gemspec" : "bundler.gemspec") + @gemspec ||= root.join(ruby_core? ? "lib/bundler/bundler.gemspec" : "bundler.gemspec") end def bindir