Class: Commands::Info

Inherits:
Object show all
Defined in:
lib/commands/plugin.rb

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Info

Returns a new instance of Info.



832
833
834
# File 'lib/commands/plugin.rb', line 832

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



836
837
838
839
840
841
842
# File 'lib/commands/plugin.rb', line 836

def options
  OptionParser.new do |o|
    o.set_summary_indent('  ')
    o.banner =    "Usage: #{@base_command.script_name} info name [name]..."
    o.define_head "Shows plugin info at {url}/about.yml."
  end
end

#parse!(args) ⇒ Object



844
845
846
847
848
849
850
# File 'lib/commands/plugin.rb', line 844

def parse!(args)
  options.parse!(args)
  args.each do |name|
    puts ::Plugin.find(name).info
    puts
  end
end