class Ellen::Adapters::Base

Attributes

robot[R]

Public Class Methods

inherited(child_class) click to toggle source
# File lib/ellen/adapters/base.rb, line 8
def inherited(child_class)
  Ellen::AdapterBuilder.adapter_classes << child_class
end
new(robot) click to toggle source
# File lib/ellen/adapters/base.rb, line 15
def initialize(robot)
  @robot = robot
  validate
end