Class: Commands::List
Instance Method Summary collapse
-
#initialize(base_command) ⇒ List
constructor
A new instance of List.
- #options ⇒ Object
- #parse!(args) ⇒ Object
Constructor Details
#initialize(base_command) ⇒ List
Returns a new instance of List.
498 499 500 501 502 503 |
# File 'lib/commands/plugin.rb', line 498 def initialize(base_command) @base_command = base_command @sources = [] @local = false @remote = true end |
Instance Method Details
#options ⇒ Object
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
# File 'lib/commands/plugin.rb', line 505 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "Usage: #{@base_command.script_name} list [OPTIONS] [PATTERN]" o.define_head "List available plugins." o.separator "" o.separator "Options:" o.separator "" o.on( "-s", "--source=URL1,URL2", Array, "Use the specified plugin repositories.") {|@sources|} o.on( "--local", "List locally installed plugins.") {|@local| @remote = false} o.on( "--remote", "List remotely availabled plugins. This is the default behavior", "unless --local is provided.") {|@remote|} end end |
#parse!(args) ⇒ Object
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
# File 'lib/commands/plugin.rb', line 523 def parse!(args) .order!(args) unless @sources.empty? @sources.map!{ |uri| Repository.new(uri) } else @sources = Repositories.instance.all end if @remote @sources.map{|r| r.plugins}.flatten.each do |plugin| if @local or !plugin.installed? puts plugin.to_s end end else cd "#{@base_command.environment.root}/vendor/plugins" Dir["*"].select{|p| File.directory?(p)}.each do |name| puts name end end end |