class Robot::Commands::Base

Command Base/Interface

Public Class Methods

call() click to toggle source
# File lib/robot/commands/base.rb, line 11
def self.call
  raise NotImplementedError, "#{self.class} has not implemented method '#{__method__}'"
end
matches(_command) click to toggle source
# File lib/robot/commands/base.rb, line 7
def self.matches(_command)
  raise NotImplementedError, "#{self.class} has not implemented method '#{__method__}'"
end