diff options
-rw-r--r-- | spec/support/helpers.rb | 2 | ||||
-rw-r--r-- | spec/support/rubygems_ext.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb index 4852f1ab30..bbcba44b13 100644 --- a/spec/support/helpers.rb +++ b/spec/support/helpers.rb @@ -309,7 +309,7 @@ module Spec gem_repo = options.fetch(:gem_repo) { gem_repo1 } gems.each do |g| path = if g == :bundler - root + "pkg/bundler-#{Bundler::VERSION}.gem" + root + "tmp/bundler-#{Bundler::VERSION}.gem" elsif g.to_s =~ %r{\A(?:[A-Z]:)?/.*\.gem\z} g else diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb index 6d4a6e12ca..28a67b3e3d 100644 --- a/spec/support/rubygems_ext.rb +++ b/spec/support/rubygems_ext.rb @@ -69,7 +69,7 @@ module Spec Dir.chdir(root) { system(cmd) } || raise("Building bundler gem failed!") end - FileUtils.mv(root.join("bundler-#{Bundler::VERSION}.gem"), "pkg") + FileUtils.mv(root.join("bundler-#{Bundler::VERSION}.gem"), "tmp") end def self.setup |