Module: LyberCore::Robot::ClassMethods

Defined in:
lib/lyber_core/robot.rb

Instance Method Summary collapse

Instance Method Details

#perform(druid, *context) ⇒ Object

Called by job-manager on derived-class Instantiate the Robot and call #work with the passed in druid



15
16
17
18
# File 'lib/lyber_core/robot.rb', line 15

def perform(druid, *context)
  bot = new
  bot.work druid, context
end