module LyberCore::Robot::ClassMethods

Public Instance Methods

perform(druid, *context) click to toggle source

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

# File lib/lyber_core/robot.rb, line 15
def perform(druid, *context)
  bot = new
  bot.work druid, context
end