Object
# File lib/commands/plugin/commands.rb, line 584 def initialize(base_command) @base_command = base_command end
# File lib/commands/plugin/commands.rb, line 588 def options OptionParser.new do |o| o.set_summary_indent(' ') o.banner = "Usage: #{@base_command.script_name} pack:install pack_file_or_url" o.define_head "Installs plugin pack at pack_file_or_url" end end
# File lib/commands/plugin/commands.rb, line 596 def parse!(args) uri = args.first plugin_pack = PluginPackParser.parse_spec_file(uri) plugin_pack.plugins.each do |plugin| puts "+ [Adding] #{plugin.name}" plugin.install end end
[Validate]
Generated with the Darkfish Rdoc Generator 2.