Class: Acclimate::Command

Inherits:
Object
  • Object
show all
Includes:
ShellHelper
Defined in:
lib/acclimate/command.rb

Instance Method Summary collapse

Methods included from ShellHelper

included

Constructor Details

#initialize(options) ⇒ Command

Returns a new instance of Command.



8
9
10
# File 'lib/acclimate/command.rb', line 8

def initialize( options )
  @options = options
end

Instance Method Details

#executeObject

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/acclimate/command.rb', line 12

def execute
  raise NotImplementedError, "You must implement #{self.class.name}#execute"
end