diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2020-06-03 20:45:36 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-06-18 19:14:15 +0900 |
commit | 1436b5026cd1b2ac4b428955aeadaac8e8b12b1b (patch) | |
tree | 14f9fa8724d3a96b0b221a39d0e1cbd9cd125197 /spec/bundler/lock/lockfile_spec.rb | |
parent | 481840ff18b2d66b20a42240829e06829c34f8f7 (diff) | |
download | ruby-1436b5026cd1b2ac4b428955aeadaac8e8b12b1b.tar.gz |
[rubygems/rubygems] s/bundle!/bundle
https://github.com/rubygems/rubygems/commit/746a4b3d74
Diffstat (limited to 'spec/bundler/lock/lockfile_spec.rb')
-rw-r--r-- | spec/bundler/lock/lockfile_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/lock/lockfile_spec.rb b/spec/bundler/lock/lockfile_spec.rb index 3ed9c52105..47b6dad9e3 100644 --- a/spec/bundler/lock/lockfile_spec.rb +++ b/spec/bundler/lock/lockfile_spec.rb @@ -496,7 +496,7 @@ RSpec.describe "the lockfile format" do #{Bundler::VERSION} L - bundle! "install" + bundle "install" expect(the_bundle).to include_gems "rack 1.0.0" end @@ -625,8 +625,8 @@ RSpec.describe "the lockfile format" do G bundle "config set cache_all true" - bundle! :cache - bundle! :install, :local => true + bundle :cache + bundle :install, :local => true lockfile_should_be <<-G PATH @@ -1294,7 +1294,7 @@ RSpec.describe "the lockfile format" do G bundle "config --local path vendor" - bundle! :install + bundle :install expect(the_bundle).to include_gems "omg 1.0" # Create a Gemfile.lock that has duplicate GIT sections |