Thor
# File bundler/cli.rb, line 51 def self.aliases_for(command_name) COMMAND_ALIASES.select {|k, _| k == command_name }.invert end
# File bundler/cli.rb, line 37 def self.all_aliases @all_aliases ||= begin command_aliases = {} COMMAND_ALIASES.each do |name, aliases| Array(aliases).each do |one_alias| command_aliases[one_alias] = name end end command_aliases end end
# File bundler/cli.rb, line 30 def self.dispatch(*) super do |i| i.send(:print_command) i.send(:warn_on_outdated_bundler) end end
# File bundler/cli.rb, line 139 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 55 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_settings_and_root! end Bundler.self_manager.restart_with_locked_bundler_if_needed 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) } end
Reformat the arguments passed to bundle that include a –help flag into the corresponding `bundle help #{command}` call
# File bundler/cli.rb, line 723 def self.reformatted_help_args(args) bundler_commands = (COMMAND_ALIASES.keys + COMMAND_ALIASES.values).flatten help_flags = %w[--help -h] exec_commands = ["exec"] + COMMAND_ALIASES["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 } command = all_aliases[command] if all_aliases[command] 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 381 def add(*gems) require_relative "cli/add" Add.new(options.dup, gems).run end
# File bundler/cli.rb, line 360 def binstubs(*gems) require_relative "cli/binstubs" Binstubs.new(options, gems).run end
# File bundler/cli.rb, line 451 def cache SharedHelpers.major_deprecation 2, "The `--all` flag is deprecated because it relies on being " \ "remembered across bundler invocations, which bundler will no longer " \ "do in future versions. Instead please use `bundle config set cache_all true`, " \ "and stop using this flag" if ARGV.include?("--all") SharedHelpers.major_deprecation 2, "The `--path` flag is deprecated because its semantics are unclear. " \ "Use `bundle config cache_path` to configure the path of your cache of gems, " \ "and `bundle config path` to configure the path where your gems are installed, " \ "and stop using this flag" if ARGV.include?("--path") require_relative "cli/cache" Cache.new(options).run end
# File bundler/cli.rb, line 173 def check remembered_flag_deprecation("path") require_relative "cli/check" Check.new(options).run end
# File bundler/cli.rb, line 622 def clean require_relative "cli/clean" Clean.new(options.dup).run end
# File bundler/cli.rb, line 84 def cli_help version Bundler.ui.info "\n" primary_commands = ["install", "update", "cache", "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 512 def console(group = nil) require_relative "cli/console" Console.new(options, group).run end
# File bundler/cli.rb, line 693 def doctor require_relative "cli/doctor" Doctor.new(options).run end
# File bundler/cli.rb, line 478 def exec(*args) if ARGV.include?("--no-keep-file-descriptors") SharedHelpers.major_deprecation(2, "The `--no-keep-file-descriptors` has been deprecated. `bundle exec` no longer mess with your file descriptors. Close them in the exec'd script if you need to") end require_relative "cli/exec" Exec.new(options, args).run end
# File bundler/cli.rb, line 425 def fund require_relative "cli/fund" Fund.new(options).run end
# File bundler/cli.rb, line 113 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", __dir__) 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) man_page = man_pages[command] if Bundler.which("man") && man_path !~ %r{^file:/.+!/META-INF/jruby.home/.+} Kernel.exec "man #{man_page}" else puts File.read("#{man_path}/#{File.basename(man_page)}.ronn") end elsif command_path = Bundler.which("bundler-#{cli}") Kernel.exec(command_path, "--help") else super end end
# File bundler/cli.rb, line 337 def info(gem_name) require_relative "cli/info" Info.new(options, gem_name).run end
# File bundler/cli.rb, line 156 def init require_relative "cli/init" Init.new(options.dup).run end
# File bundler/cli.rb, line 640 def inject(name, version) SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command" require_relative "cli/inject" Inject.new(options.dup, name, version).run end
# File bundler/cli.rb, line 244 def install SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force") %w[clean deployment frozen no-prune path shebang system without with].each do |option| remembered_flag_deprecation(option) end remembered_negative_flag_deprecation("no-deployment") require_relative "cli/install" Bundler.settings.temporary(:no_install => false) do Install.new(options.dup).run end end
# File bundler/cli.rb, line 699 def issue require_relative "cli/issue" Issue.new.run end
# File bundler/cli.rb, line 535 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 327 def list require_relative "cli/list" List.new(options).run end
# File bundler/cli.rb, line 673 def lock require_relative "cli/lock" Lock.new(options).run end
# File bundler/cli.rb, line 505 def open(name) require_relative "cli/open" Open.new(options, name).run end
# File bundler/cli.rb, line 417 def outdated(*gems) require_relative "cli/outdated" Outdated.new(options, gems).run end
# File bundler/cli.rb, line 630 def platform require_relative "cli/platform" Platform.new(options).run end
# File bundler/cli.rb, line 710 def pristine(*gems) require_relative "cli/pristine" Pristine.new(gems).run end
# File bundler/cli.rb, line 188 def remove(*gems) SharedHelpers.major_deprecation(2, "The `--install` flag has been deprecated. `bundle install` is triggered by default.") if ARGV.include?("--install") require_relative "cli/remove" Remove.new(gems, options).run end
# File bundler/cli.rb, line 316 def show(gem_name = nil) SharedHelpers.major_deprecation(2, "the `--outdated` flag to `bundle show` was undocumented and will be removed without replacement") if ARGV.include?("--outdated") require_relative "cli/show" Show.new(options, gem_name).run end
# File bundler/cli.rb, line 299 def update(*gems) SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force") require_relative "cli/update" Bundler.settings.temporary(:no_install => false) do Update.new(options, gems).run end end
# File bundler/cli.rb, line 519 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