Method: TempestTime::Command#execute

Defined in:
lib/tempest_time/command.rb

#executeObject

Raises:

  • (NotImplementedError)


11
12
13
14
15
16
# File 'lib/tempest_time/command.rb', line 11

def execute(*)
  raise(
      NotImplementedError,
      "#{self.class}##{__method__} must be implemented"
  )
end