1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge Bundler 2.1.0.pre.1 as developed version from upstream.

a53709556b

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67539 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2019-04-14 06:01:35 +00:00
parent d636809c05
commit 68ddd4d300
290 changed files with 5820 additions and 6161 deletions

View file

@ -31,7 +31,7 @@ RSpec.describe "bundle console", :bundler => "< 3" do
source "file://#{gem_repo1}"
gem "pry"
G
bundle "config console pry"
bundle "config set console pry"
bundle "console" do |input, _, _|
input.puts("__method__")
@ -41,7 +41,7 @@ RSpec.describe "bundle console", :bundler => "< 3" do
end
it "falls back to IRB if the other REPL isn't available" do
bundle "config console pry"
bundle "config set console pry"
# make sure pry isn't there
bundle "console" do |input, _, _|
@ -94,7 +94,7 @@ RSpec.describe "bundle console", :bundler => "< 3" do
gem "foo"
G
bundle "config auto_install 1"
bundle "config set auto_install 1"
bundle :console do |input, _, _|
input.puts("puts 'hello'")
input.puts("exit")