Sha256: e34fbd9de34ab6fe76366eb2180ddd2c21c9f3bb00429bf79b303ef92cdc5361
Contents?: true
Size: 515 Bytes
Versions: 2
Compression:
Stored size: 515 Bytes
Contents
require 'claide' module LgPodPlugin class Command < CLAide::Command require_relative 'cache' require_relative 'update' require_relative 'install' self.command = 'lg' self.version = VERSION self.abstract_command = true self.description = 'this is `lg_pod_plugin` command line tool!' def self.options [ ['--silent', 'Show nothing'] ].concat(super) end def self.run(argv) super(argv) end def initialize(argv) super end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lg_pod_plugin-1.1.0 | lib/command/command.rb |
lg_pod_plugin-1.0.10 | lib/command/command.rb |