Class: Bundler::CLI

Inherits:
Thor
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/bundler/cli.rb

Defined Under Namespace

Modules: Common Classes: Binstubs, Cache, Check, Clean, Config, Console, Exec, Gem, Init, Inject, Install, Open, Outdated, Package, Platform, Show, Update, Viz

Constant Summary collapse

AUTO_INSTALL_CMDS =
%w[show binstubs outdated exec open console licenses clean]

Constants inherited from Thor

Thor::AmbiguousTaskError, Thor::DynamicTask, Thor::HELP_MAPPINGS, Thor::HiddenTask, Thor::TEMPLATE_EXTNAME, Thor::THOR_RESERVED_WORDS, Thor::Task, Thor::UndefinedTaskError, Thor::VERSION

Instance Attribute Summary

Attributes included from Thor::Actions

#behavior

Attributes included from Thor::Base

#args, #options, #parent_options

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Thor::Actions

#action, #append_to_file, #apply, #chmod, #comment_lines, #copy_file, #create_file, #create_link, #destination_root, #destination_root=, #directory, #empty_directory, #find_in_source_paths, #get, #gsub_file, #in_root, included, #inject_into_class, #insert_into_file, #inside, #link_file, #prepend_to_file, #relative_to_original_destination_root, #remove_file, #run, #run_ruby_script, #source_paths, #template, #thor, #uncomment_lines

Methods inherited from Thor

check_unknown_options!, check_unknown_options?, command_help, default_command, desc, help, long_desc, map, method_option, method_options, package_name, printable_commands, register, stop_on_unknown_option!, stop_on_unknown_option?, subcommand, subcommands

Methods included from Thor::Base

included, register_klass_file, subclass_files, subclasses

Constructor Details

#initialize(*args) ⇒ CLI

Returns a new instance of CLI.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/bundler/cli.rb', line 18

def initialize(*args)
  super
  current_cmd = args.last[:current_command].name
  custom_gemfile = options[:gemfile] || Bundler.settings[:gemfile]
  ENV['BUNDLE_GEMFILE']   = File.expand_path(custom_gemfile) if custom_gemfile
  Bundler::Retry.attempts = options[:retry] || Bundler.settings[:retry] || Bundler::Retry::DEFAULT_ATTEMPTS
  Bundler.rubygems.ui = UI::RGProxy.new(Bundler.ui)
  auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
rescue UnknownArgumentError => e
  raise InvalidOption, e.message
ensure
  self.options ||= {}
  Bundler.ui = UI::Shell.new(options)
  Bundler.ui.level = "debug" if options["verbose"]
end

Class Method Details

.handle_no_command_error(command, has_namespace = $thor_runner) ⇒ Object



73
74
75
76
77
# File 'lib/bundler/cli.rb', line 73

def self.handle_no_command_error(command, has_namespace = $thor_runner)
  return super unless command_path = Bundler.which("bundler-#{command}")

  Kernel.exec(command_path, *ARGV[1..-1])
end

.source_rootObject



354
355
356
# File 'lib/bundler/cli.rb', line 354

def self.source_root
  File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
end

.startObject



9
10
11
12
13
14
15
16
# File 'lib/bundler/cli.rb', line 9

def self.start(*)
  super
rescue Exception => e
  Bundler.ui = UI::Shell.new
  raise e
ensure
  Bundler.cleanup
end

Instance Method Details

#binstubs(*gems) ⇒ Object



207
208
209
210
# File 'lib/bundler/cli.rb', line 207

def binstubs(*gems)
  require 'bundler/cli/binstubs'
  Binstubs.new(options, gems).run
end

#cacheObject



234
235
236
237
# File 'lib/bundler/cli.rb', line 234

def cache
  require 'bundler/cli/cache'
  Cache.new(options).run
end

#checkObject



103
104
105
106
# File 'lib/bundler/cli.rb', line 103

def check
  require 'bundler/cli/check'
  Check.new(options).run
end

#cleanObject



363
364
365
366
# File 'lib/bundler/cli.rb', line 363

def clean
  require 'bundler/cli/clean'
  Clean.new(options.dup).run
end

#config(*args) ⇒ Object



286
287
288
289
# File 'lib/bundler/cli.rb', line 286

def config(*args)
  require 'bundler/cli/config'
  Config.new(options, args, self).run
end

#console(group = nil) ⇒ Object



298
299
300
301
# File 'lib/bundler/cli.rb', line 298

def console(group = nil)
  require 'bundler/cli/console'
  Console.new(options, group).run
end

#envObject



383
384
385
# File 'lib/bundler/cli.rb', line 383

def env
  Env.new.write($stdout)
end

#exec(*args) ⇒ Object



269
270
271
272
# File 'lib/bundler/cli.rb', line 269

def exec(*args)
  require 'bundler/cli/exec'
  Exec.new(options, args).run
end

#gem(name) ⇒ Object



349
350
351
352
# File 'lib/bundler/cli.rb', line 349

def gem(name)
  require 'bundler/cli/gem'
  Gem.new(options, name, self).run
end

#help(cli = nil) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/bundler/cli.rb', line 43

def help(cli = nil)
  case cli
  when "gemfile" then command = "gemfile.5"
  when nil       then command = "bundle"
  else command = "bundle-#{cli}"
  end

  manpages = %w(
      bundle
      bundle-config
      bundle-exec
      bundle-install
      bundle-package
      bundle-update
      bundle-platform
      gemfile.5)

  if manpages.include?(command)
    root = File.expand_path("../man", __FILE__)

    if Bundler.which("man") && root !~ %r{^file:/.+!/META-INF/jruby.home/.+}
      Kernel.exec "man #{root}/#{command}"
    else
      puts File.read("#{root}/#{command}.txt")
    end
  else
    super
  end
end

#initObject



86
87
88
89
# File 'lib/bundler/cli.rb', line 86

def init
  require 'bundler/cli/init'
  Init.new(options.dup).run
end

#inject(name, version, *gems) ⇒ Object



377
378
379
380
# File 'lib/bundler/cli.rb', line 377

def inject(name, version, *gems)
  require 'bundler/cli/inject'
  Inject.new(options, name, version, gems).run
end

#installObject



155
156
157
158
# File 'lib/bundler/cli.rb', line 155

def install
  require 'bundler/cli/install'
  Install.new(options.dup).run
end

#licensesObject



310
311
312
313
314
315
316
317
318
319
320
321
# File 'lib/bundler/cli.rb', line 310

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

#open(name) ⇒ Object



292
293
294
295
# File 'lib/bundler/cli.rb', line 292

def open(name)
  require 'bundler/cli/open'
  Open.new(options, name).run
end

#outdated(*gems) ⇒ Object



225
226
227
228
# File 'lib/bundler/cli.rb', line 225

def outdated(*gems)
  require 'bundler/cli/outdated'
  Outdated.new(options, gems).run
end

#packageObject



256
257
258
259
# File 'lib/bundler/cli.rb', line 256

def package
  require 'bundler/cli/package'
  Package.new(options).run
end

#platformObject



371
372
373
374
# File 'lib/bundler/cli.rb', line 371

def platform
  require 'bundler/cli/platform'
  Platform.new(options).run
end

#show(gem_name = nil) ⇒ Object



192
193
194
195
# File 'lib/bundler/cli.rb', line 192

def show(gem_name = nil)
  require 'bundler/cli/show'
  Show.new(options, gem_name).run
end

#update(*gems) ⇒ Object



178
179
180
181
# File 'lib/bundler/cli.rb', line 178

def update(*gems)
  require 'bundler/cli/update'
  Update.new(options, gems).run
end

#versionObject



304
305
306
# File 'lib/bundler/cli.rb', line 304

def version
  Bundler.ui.info "Bundler version #{Bundler::VERSION}"
end

#vizObject



334
335
336
337
# File 'lib/bundler/cli.rb', line 334

def viz
  require 'bundler/cli/viz'
  Viz.new(options).run
end