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

Specify explicit separator not to be affected by $;

This commit is contained in:
Nobuyoshi Nakada 2020-03-08 17:38:37 +09:00
parent 53efe63280
commit 2b7409a2f2
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
10 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,7 @@ module Bundler
Bundler::SharedHelpers.major_deprecation 2, "bundle console will be replaced " \
"by `bin/console` generated by `bundle gem <name>`"
group ? Bundler.require(:default, *group.split.map!(&:to_sym)) : Bundler.require
group ? Bundler.require(:default, *group.split(' ').map!(&:to_sym)) : Bundler.require
ARGV.clear
console = get_console(Bundler.settings[:console] || "irb")