Sha256: e0c06ab0f9533ead902df24d19feece2dc989adc4c079440b55dc8d694182fa5
Contents?: true
Size: 597 Bytes
Versions: 3
Compression:
Stored size: 597 Bytes
Contents
require 'claide' module LgPodPlugin class Command < CLAide::Command require_relative 'cache' require_relative 'update' require_relative 'init' require_relative 'install' require_relative '../lg_pod_plugin/gitlab_api.rb' 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lg_pod_plugin-1.1.3 | lib/command/command.rb |
lg_pod_plugin-1.1.2 | lib/command/command.rb |
lg_pod_plugin-1.1.1 | lib/command/command.rb |