Thor
# File bundler/cli.rb, line 64
def self.deprecated_option(*args, &blk)
return if Bundler.feature_flag.forget_cli_options?
method_option(*args, &blk)
end
# File bundler/cli.rb, line 26
def self.dispatch(*)
super do |i|
i.send(:print_command)
i.send(:warn_on_outdated_bundler)
end
end
# File bundler/cli.rb, line 129
def self.handle_no_command_error(command, has_namespace = $thor_runner)
if Bundler.feature_flag.plugins? && Bundler::Plugin.command?(command)
return Bundler::Plugin.exec_command(command, ARGV[1..-1])
end
return super unless command_path = Bundler.which("bundler-#{command}")
Kernel.exec(command_path, *ARGV[1..-1])
end
# File bundler/cli.rb, line 33
def initialize(*args)
super
custom_gemfile = options[:gemfile] || Bundler.settings[:gemfile]
if custom_gemfile && !custom_gemfile.empty?
Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", File.expand_path(custom_gemfile)
Bundler.reset_paths!
end
Bundler.settings.set_command_option_if_given :retry, options[:retry]
current_cmd = args.last[:current_command].name
auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
rescue UnknownArgumentError => e
raise InvalidOption, e.message
ensure
self.options ||= {}
unprinted_warnings = Bundler.ui.unprinted_warnings
Bundler.ui = UI::Shell.new(options)
Bundler.ui.level = "debug" if options["verbose"]
unprinted_warnings.each {|w| Bundler.ui.warn(w) }
if ENV["RUBYGEMS_GEMDEPS"] && !ENV["RUBYGEMS_GEMDEPS"].empty?
Bundler.ui.warn(
"The RUBYGEMS_GEMDEPS environment variable is set. This enables RubyGems' " \
"experimental Gemfile mode, which may conflict with Bundler and cause unexpected errors. " \
"To remove this warning, unset RUBYGEMS_GEMDEPS.", :wrap => true
)
end
end
Reformat the arguments passed to bundle that include a –help flag into the corresponding `bundle help #{command}` call
# File bundler/cli.rb, line 691
def self.reformatted_help_args(args)
bundler_commands = all_commands.keys
help_flags = %w[--help -h]
exec_commands = %w[e ex exe exec]
help_used = args.index {|a| help_flags.include? a }
exec_used = args.index {|a| exec_commands.include? a }
command = args.find {|a| bundler_commands.include? a }
if exec_used && help_used
if exec_used + help_used == 1
%w[help exec]
else
args
end
elsif help_used
args = args.dup
args.delete_at(help_used)
["help", command || args].flatten.compact
else
args
end
end
# File bundler/cli.rb, line 368
def add(*gems)
require "bundler/cli/add"
Add.new(options.dup, gems).run
end
# File bundler/cli.rb, line 352
def binstubs(*gems)
require "bundler/cli/binstubs"
Binstubs.new(options, gems).run
end
# File bundler/cli.rb, line 418
def cache
require "bundler/cli/cache"
Cache.new(options).run
end
# File bundler/cli.rb, line 164
def check
require "bundler/cli/check"
Check.new(options).run
end
# File bundler/cli.rb, line 592
def clean
require "bundler/cli/clean"
Clean.new(options.dup).run
end
# File bundler/cli.rb, line 73
def cli_help
version
Bundler.ui.info "\n"
primary_commands = ["install", "update",
Bundler.feature_flag.cache_command_is_package? ? "cache" : "package",
"exec", "config", "help"]
list = self.class.printable_commands(true)
by_name = list.group_by {|name, _message| name.match(/^bundle (\w+)/)[1] }
utilities = by_name.keys.sort - primary_commands
primary_commands.map! {|name| (by_name[name] || raise("no primary command #{name}")).first }
utilities.map! {|name| by_name[name].first }
shell.say "Bundler commands:\n\n"
shell.say " Primary commands:\n"
shell.print_table(primary_commands, :indent => 4, :truncate => true)
shell.say
shell.say " Utilities:\n"
shell.print_table(utilities, :indent => 4, :truncate => true)
shell.say
self.class.send(:class_options_help, shell)
end
# File bundler/cli.rb, line 479
def config(*args)
require "bundler/cli/config"
Config.new(options, args, self).run
end
# File bundler/cli.rb, line 492
def console(group = nil)
require "bundler/cli/console"
Console.new(options, group).run
end
# File bundler/cli.rb, line 661
def doctor
require "bundler/cli/doctor"
Doctor.new(options).run
end
# File bundler/cli.rb, line 461
def exec(*args)
require "bundler/cli/exec"
Exec.new(options, args).run
end
# File bundler/cli.rb, line 104
def help(cli = nil)
case cli
when "gemfile" then command = "gemfile"
when nil then command = "bundle"
else command = "bundle-#{cli}"
end
man_path = File.expand_path("../../../man", __FILE__)
man_pages = Hash[Dir.glob(File.join(man_path, "*")).grep(/.*\.\d*\Z/).collect do |f|
[File.basename(f, ".*"), f]
end]
if man_pages.include?(command)
if Bundler.which("man") && man_path !~ %r{^file:/.+!/META-INF/jruby.home/.+}
Kernel.exec "man #{man_pages[command]}"
else
puts File.read("#{man_path}/#{File.basename(man_pages[command])}.txt")
end
elsif command_path = Bundler.which("bundler-#{cli}")
Kernel.exec(command_path, "--help")
else
super
end
end
# File bundler/cli.rb, line 331
def info(gem_name)
require "bundler/cli/info"
Info.new(options, gem_name).run
end
# File bundler/cli.rb, line 146
def init
require "bundler/cli/init"
Init.new(options.dup).run
end
# File bundler/cli.rb, line 610
def inject(name, version)
SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command"
require "bundler/cli/inject"
Inject.new(options.dup, name, version).run
end
# File bundler/cli.rb, line 231
def install
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
require "bundler/cli/install"
Bundler.settings.temporary(:no_install => false) do
Install.new(options.dup).run
end
end
# File bundler/cli.rb, line 667
def issue
require "bundler/cli/issue"
Issue.new.run
end
# File bundler/cli.rb, line 514
def licenses
Bundler.load.specs.sort_by {|s| s.license.to_s }.reverse_each do |s|
gem_name = s.name
license = s.license || s.licenses
if license.empty?
Bundler.ui.warn "#{gem_name}: Unknown"
else
Bundler.ui.info "#{gem_name}: #{license}"
end
end
end
# File bundler/cli.rb, line 319
def list
require "bundler/cli/list"
List.new(options).run
end
# File bundler/cli.rb, line 641
def lock
require "bundler/cli/lock"
Lock.new(options).run
end
# File bundler/cli.rb, line 485
def open(name)
require "bundler/cli/open"
Open.new(options, name).run
end
# File bundler/cli.rb, line 403
def outdated(*gems)
require "bundler/cli/outdated"
Outdated.new(options, gems).run
end
# File bundler/cli.rb, line 446
def package
require "bundler/cli/package"
Package.new(options).run
end
# File bundler/cli.rb, line 600
def platform
require "bundler/cli/platform"
Platform.new(options).run
end
# File bundler/cli.rb, line 678
def pristine(*gems)
require "bundler/cli/pristine"
Pristine.new(gems).run
end
# File bundler/cli.rb, line 175
def remove(*gems)
require "bundler/cli/remove"
Remove.new(gems, options).run
end
# File bundler/cli.rb, line 292
def show(gem_name = nil)
if ARGV[0] == "show"
rest = ARGV[1..-1]
new_command = rest.find {|arg| !arg.start_with?("--") } ? "info" : "list"
new_arguments = rest.map do |arg|
next arg if arg != "--paths"
next "--path" if new_command == "info"
end
old_argv = ARGV.join(" ")
new_argv = [new_command, *new_arguments.compact].join(" ")
Bundler::SharedHelpers.major_deprecation(2, "use `bundle #{new_argv}` instead of `bundle #{old_argv}`")
end
require "bundler/cli/show"
Show.new(options, gem_name).run
end
# File bundler/cli.rb, line 277
def update(*gems)
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
require "bundler/cli/update"
Update.new(options, gems).run
end
# File bundler/cli.rb, line 499
def version
cli_help = current_command.name == "cli_help"
if cli_help || ARGV.include?("version")
build_info = " (#{BuildMetadata.built_at} commit #{BuildMetadata.git_commit_sha})"
end
if !cli_help && Bundler.feature_flag.print_only_version_number?
Bundler.ui.info "#{Bundler::VERSION}#{build_info}"
else
Bundler.ui.info "Bundler version #{Bundler::VERSION}#{build_info}"
end
end