summaryrefslogtreecommitdiff
path: root/spec/bundler/commands/show_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-06-03 20:46:03 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-18 19:14:15 +0900
commit696a50751bc3257e5a75b4f0eb89ccef7ec89363 (patch)
tree19e940b128c0a3dcdebac95ff98c217f646ae925 /spec/bundler/commands/show_spec.rb
parent1436b5026cd1b2ac4b428955aeadaac8e8b12b1b (diff)
[rubygems/rubygems] s/install_gemfile!/install_gemfile
https://github.com/rubygems/rubygems/commit/4d1a0c465a
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3212
Diffstat (limited to 'spec/bundler/commands/show_spec.rb')
-rw-r--r--spec/bundler/commands/show_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/bundler/commands/show_spec.rb b/spec/bundler/commands/show_spec.rb
index 177fb15c63..30e9de9686 100644
--- a/spec/bundler/commands/show_spec.rb
+++ b/spec/bundler/commands/show_spec.rb
@@ -3,7 +3,7 @@
RSpec.describe "bundle show", :bundler => "< 3" do
context "with a standard Gemfile" do
before :each do
- install_gemfile! <<-G
+ install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "rails"
G
@@ -94,7 +94,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
end
it "prints out git info" do
- install_gemfile! <<-G
+ install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}"
G
expect(the_bundle).to include_gems "foo 1.0"
@@ -109,7 +109,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
end
@revision = revision_for(lib_path("foo-1.0"))[0...6]
- install_gemfile! <<-G
+ install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}", :branch => "omg"
G
expect(the_bundle).to include_gems "foo 1.0.omg"
@@ -120,7 +120,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
it "doesn't print the branch when tied to a ref" do
sha = revision_for(lib_path("foo-1.0"))
- install_gemfile! <<-G
+ install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}", :ref => "#{sha}"
G
@@ -130,7 +130,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
it "handles when a version is a '-' prerelease" do
@git = build_git("foo", "1.0.0-beta.1", :path => lib_path("foo"))
- install_gemfile! <<-G
+ install_gemfile <<-G
gem "foo", "1.0.0-beta.1", :git => "#{lib_path("foo")}"
G
expect(the_bundle).to include_gems "foo 1.0.0.pre.beta.1"
@@ -166,7 +166,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
context "with a valid regexp for gem name" do
it "presents alternatives", :readline do
- install_gemfile! <<-G
+ install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rack-obama"
@@ -179,7 +179,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
context "with an invalid regexp for gem name" do
it "does not find the gem" do
- install_gemfile! <<-G
+ install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
gem "rails"
G
@@ -198,7 +198,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do
end
it "doesn't update gems to newer versions" do
- install_gemfile! <<-G
+ install_gemfile <<-G
source "#{file_uri_for(gem_repo2)}"
gem "rails"
G