Sha256: f23e3eb9269147ea0506b2b4a91d286f088ad270df3679ca05c2a018ec0eff3d
Contents?: true
Size: 603 Bytes
Versions: 15
Compression:
Stored size: 603 Bytes
Contents
module Coherent module Commands class Remove def initialize(base_command) @base_command = base_command end def options OptionParser.new do |o| o.set_summary_indent(' ') o.banner = "Usage: #{@base_command.script_name} remove name [name]..." o.define_head "Remove plugins." end end def parse!(args) options.parse!(args) root = @base_command.environment.root args.each do |name| Coherent::Plugin.new(name).uninstall end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems