Class: Commands::Sources

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

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Sources

Returns a new instance of Sources.



589
590
591
# File 'lib/commands/plugin.rb', line 589

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



593
594
595
596
597
598
599
600
601
602
603
604
# File 'lib/commands/plugin.rb', line 593

def options
  OptionParser.new do |o|
    o.set_summary_indent('  ')
    o.banner =    "Usage: #{@base_command.script_name} sources [OPTIONS] [PATTERN]"
    o.define_head "List configured plugin repositories."
    o.separator   ""        
    o.separator   "Options:"
    o.separator   ""
    o.on(         "-c", "--check", 
                  "Report status of repository.") { |sources| @sources = sources}
  end
end

#parse!(args) ⇒ Object



606
607
608
609
610
611
# File 'lib/commands/plugin.rb', line 606

def parse!(args)
  options.parse!(args)
  Repositories.each do |repo|
    puts repo.uri
  end
end