Class: Coherent::Commands::Sources

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

Instance Method Summary collapse

Constructor Details

#initialize(base_command) ⇒ Sources

Returns a new instance of Sources.



6
7
8
# File 'lib/plugin/commands/sources.rb', line 6

def initialize(base_command)
  @base_command = base_command
end

Instance Method Details

#optionsObject



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/plugin/commands/sources.rb', line 10

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



23
24
25
26
27
28
# File 'lib/plugin/commands/sources.rb', line 23

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