Sha256: 84386608f9852863792f8349ebbdcbaee20f372e4382400f502146abe343c9f1

Contents?: true

Size: 571 Bytes

Versions: 15

Compression:

Stored size: 571 Bytes

Contents

module Coherent
  module Commands
    

    class Info
      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} info name [name]..."
          o.define_head "Shows plugin info at {url}/about.yml."
        end
      end

      def parse!(args)
        options.parse!(args)
        args.each do |name|
          puts ::Plugin.find(name).info
          puts
        end
      end
    end


  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

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