Class: LgPodPlugin::Command

Inherits:
CLAide::Command
  • Object
show all
Defined in:
lib/command/init.rb,
lib/command/cache.rb,
lib/command/update.rb,
lib/command/command.rb,
lib/command/install.rb

Direct Known Subclasses

Cache, Init, Install, Update

Defined Under Namespace

Classes: Cache, Init, Install, Update

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(argv) ⇒ Command

Returns a new instance of Command.



24
25
26
# File 'lib/command/command.rb', line 24

def initialize(argv)
  super
end

Class Method Details

.optionsObject



14
15
16
17
18
# File 'lib/command/command.rb', line 14

def self.options
  [
    ['--silent', 'Show nothing']
  ].concat(super)
end

.run(argv) ⇒ Object



20
21
22
# File 'lib/command/command.rb', line 20

def self.run(argv)
  super(argv)
end