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

[bundler/bundler] Remove unnecessary method parameter

https://github.com/bundler/bundler/commit/72194d1aac
This commit is contained in:
David Rodríguez 2019-07-16 11:50:56 +02:00 committed by Hiroshi SHIBATA
parent a1c69991a5
commit f40914e3cf
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -75,10 +75,10 @@ m = Module.new do
def load_bundler!
ENV["BUNDLE_GEMFILE"] ||= gemfile
activate_bundler(bundler_requirement)
activate_bundler
end
def activate_bundler(bundler_requirement)
def activate_bundler
gem_error = activation_error_handling do
gem "bundler", bundler_requirement
end