Class: Commands::Unsource
Instance Method Summary collapse
-
#initialize(base_command) ⇒ Unsource
constructor
A new instance of Unsource.
- #options ⇒ Object
- #parse!(args) ⇒ Object
Constructor Details
#initialize(base_command) ⇒ Unsource
Returns a new instance of Unsource.
575 576 577 |
# File 'lib/commands/plugin.rb', line 575 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
579 580 581 582 583 584 585 586 587 |
# File 'lib/commands/plugin.rb', line 579 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "Usage: #{@base_command.script_name} source URI [URI [URI]...]" o.define_head "Remove repositories from the default search list." o.separator "" o.on_tail("-h", "--help", "Show this help message.") { puts o; exit } end end |
#parse!(args) ⇒ Object
589 590 591 592 593 594 595 596 597 598 599 600 601 602 |
# File 'lib/commands/plugin.rb', line 589 def parse!(args) .parse!(args) count = 0 args.each do |uri| if Repositories.instance.remove(uri) count += 1 puts "removed: #{uri.ljust(50)}" else puts "failed: #{uri.ljust(50)}" end end Repositories.instance.save puts "Removed #{count} repositories." end |