class Bundler::Dependencies::CLI
Public Class Methods
Public Instance Methods
count(*args)
click to toggle source
# File lib/bundler/dependencies/cli.rb, line 29 def count(*args) return help(:count) if args.first == 'help' Count.new(options).output end
find(gem = nil)
click to toggle source
# File lib/bundler/dependencies/cli.rb, line 48 def find(gem = nil) return help(:find) if gem.nil? || gem == 'help' Find.new(gem, options).output end
graph(gem = nil)
click to toggle source
# File lib/bundler/dependencies/cli.rb, line 38 def graph(gem = nil) return help(:graph) if gem == 'help' Graph.new(gem, options).output end
version()
click to toggle source
# File lib/bundler/dependencies/cli.rb, line 21 def version puts "#{File.basename($PROGRAM_NAME)} #{VERSION}" end