Class: Commands::List

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

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ List

Returns a new instance of List.



522
523
524
525
526
527
# File 'lib/commands/plugin.rb', line 522

def initialize(base_command)
  @base_command = base_command
  @sources = []
  @local = false
  @remote = true
end

Instance Method Details

#optionsObject



529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# File 'lib/commands/plugin.rb', line 529

def options
  OptionParser.new do |o|
    o.set_summary_indent('  ')
    o.banner =    "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 available plugins. This is the default behavior",
                  "unless --local is provided.") {|@remote|}
  end
end

#parse!(args) ⇒ Object



547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
# File 'lib/commands/plugin.rb', line 547

def parse!(args)
  options.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