Class: Ruwi::Cli::Command::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/ruwi/cli/command/base.rb

Direct Known Subclasses

Dev, Pack, Rebuild, Setup

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.descriptionObject



13
14
15
# File 'lib/ruwi/cli/command/base.rb', line 13

def self.description
  nil
end

Instance Method Details

#run(_argv) ⇒ Object

Raises:

  • (NotImplementedError)


17
18
19
# File 'lib/ruwi/cli/command/base.rb', line 17

def run(_argv)
  raise NotImplementedError, "Subclasses must implement #run"
end