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