Class: Commands::Sources
Instance Method Summary collapse
-
#initialize(base_command) ⇒ Sources
constructor
A new instance of Sources.
- #options ⇒ Object
- #parse!(args) ⇒ Object
Constructor Details
#initialize(base_command) ⇒ Sources
Returns a new instance of Sources.
547 548 549 |
# File 'lib/commands/plugin.rb', line 547 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
551 552 553 554 555 556 557 558 559 560 561 562 |
# File 'lib/commands/plugin.rb', line 551 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "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|} end end |
#parse!(args) ⇒ Object
564 565 566 567 568 569 |
# File 'lib/commands/plugin.rb', line 564 def parse!(args) .parse!(args) Repositories.each do |repo| puts repo.uri end end |