summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-15 18:25:56 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-17 17:08:51 +0900
commit9925e1a10f94f2a8c6d1b513d4546157ccecdc3f (patch)
tree0a32bd70d05dc0c8a3337503648d094d4115b859
parentf88237623f9131a9a07a4dd7ffde8c758e63e32c (diff)
downloadruby-9925e1a10f94f2a8c6d1b513d4546157ccecdc3f.tar.gz
[bundler/bundler] Remove unneeded `to_s` calls
They are implicit inside `gem_command!`. https://github.com/bundler/bundler/commit/6bdb13c899
-rw-r--r--spec/bundler/quality_spec.rb2
-rw-r--r--spec/bundler/support/helpers.rb4
2 files changed, 3 insertions, 3 deletions
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}