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

Version Path
coherent-0.6.11 lib/plugin/commands/remove.rb
coherent-0.6.10 lib/plugin/commands/remove.rb
coherent-0.6.9 lib/plugin/commands/remove.rb
coherent-0.6.8 lib/plugin/commands/remove.rb
coherent-0.6.7 lib/plugin/commands/remove.rb
coherent-0.6.6 lib/plugin/commands/remove.rb
coherent-0.6.5 lib/plugin/commands/remove.rb
coherent-0.6.4 lib/plugin/commands/remove.rb
coherent-0.6.2 lib/plugin/commands/remove.rb
coherent-0.6.1 lib/plugin/commands/remove.rb
coherent-0.6.0 lib/plugin/commands/remove.rb
coherent-0.4.3 lib/plugin/commands/remove.rb
coherent-0.4.2 lib/plugin/commands/remove.rb
coherent-0.4.1 lib/plugin/commands/remove.rb
coherent-0.4.0 lib/plugin/commands/remove.rb