Sha256: 641088b17c4e9f0f4aa8afee8011ad2bf273fbe0066e1b49210ceff84f9c45ad

Contents?: true

Size: 574 Bytes

Versions: 8

Compression:

Stored size: 574 Bytes

Contents

require 'claide'

module LgPodPlugin
  class Command < CLAide::Command
    require_relative 'cache'
    require_relative 'update'
    require_relative 'init'
    require_relative 'install'
    require_relative 'doctor'
    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

8 entries across 8 versions & 1 rubygems

Version Path
lg_pod_plugin-1.2.2 lib/command/command.rb
lg_pod_plugin-1.2.1 lib/command/command.rb
lg_pod_plugin-1.2.0.1 lib/command/command.rb
lg_pod_plugin-1.2.0.0 lib/command/command.rb
lg_pod_plugin-1.1.8.2 lib/command/command.rb
lg_pod_plugin-1.1.8.1 lib/command/command.rb
lg_pod_plugin-1.1.7.4 lib/command/command.rb
lg_pod_plugin-1.1.7.3 lib/command/command.rb