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

Merge the master branch of Bundler

This commit is contained in:
Hiroshi SHIBATA 2021-04-15 12:47:04 +09:00
parent 0d9496f924
commit ed149dbf46
Notes: git 2021-04-15 15:36:39 +09:00
95 changed files with 1772 additions and 579 deletions

View file

@ -82,7 +82,9 @@ module Bundler
end
def install(spec, options = {})
print_using_message "Using #{version_message(spec)} from #{self}"
using_message = "Using #{version_message(spec)} from #{self}"
using_message += " and installing its executables" unless spec.executables.empty?
print_using_message using_message
generate_bin(spec, :disable_extensions => true)
nil # no post-install message
end