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.
646 647 648 |
# File 'lib/commands/plugin.rb', line 646 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
650 651 652 653 654 655 656 657 658 |
# File 'lib/commands/plugin.rb', line 650 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "Usage: #{@base_command.script_name} unsource 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
660 661 662 663 664 665 666 667 668 669 670 671 672 673 |
# File 'lib/commands/plugin.rb', line 660 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 |