From 9925e1a10f94f2a8c6d1b513d4546157ccecdc3f Mon Sep 17 00:00:00 2001 From: David Rodríguez Date: Thu, 15 Aug 2019 18:25:56 +0200 Subject: [bundler/bundler] Remove unneeded `to_s` calls They are implicit inside `gem_command!`. https://github.com/bundler/bundler/commit/6bdb13c899 --- spec/bundler/quality_spec.rb | 2 +- spec/bundler/support/helpers.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'spec/bundler') diff --git a/spec/bundler/quality_spec.rb b/spec/bundler/quality_spec.rb index 85d0084e9a..8c9a1b6c35 100644 --- a/spec/bundler/quality_spec.rb +++ b/spec/bundler/quality_spec.rb @@ -231,7 +231,7 @@ RSpec.describe "The library itself" do spec = Gem::Specification.load(gemspec.to_s) spec.bindir = "libexec" File.open(root.join("bundler.gemspec").to_s, "w") {|f| f.write spec.to_ruby } - gem_command! :build, root.join("bundler.gemspec").to_s + gem_command! :build, root.join("bundler.gemspec") FileUtils.rm(root.join("bundler.gemspec").to_s) else gem_command! :build, gemspec diff --git a/spec/bundler/support/helpers.rb b/spec/bundler/support/helpers.rb index a46292665b..058c7a893d 100644 --- a/spec/bundler/support/helpers.rb +++ b/spec/bundler/support/helpers.rb @@ -302,10 +302,10 @@ module Spec spec = Gem::Specification.load(gemspec.to_s) spec.bindir = "libexec" File.open(root.join("bundler.gemspec").to_s, "w") {|f| f.write spec.to_ruby } - Dir.chdir(root) { gem_command! :build, root.join("bundler.gemspec").to_s } + Dir.chdir(root) { gem_command! :build, root.join("bundler.gemspec") } FileUtils.rm(root.join("bundler.gemspec")) else - Dir.chdir(root) { gem_command! :build, gemspec.to_s } + Dir.chdir(root) { gem_command! :build, gemspec } end bundler_path = root.join("bundler-#{Bundler::VERSION}.gem") elsif g.to_s =~ %r{\A(?:[A-Z]:)?/.*\.gem\z} -- cgit v1.2.3