Super Easy To Use
# First, you create your worker class
class MyWorker < SimpleWorker::Base
def run
# Do some seriously cool stuff here.
# Cool as in sending emails, hardcore data processing
# or whatever suits your fancy.
end
end
# Instantiate a new worker
worker = MyWorker.new
# Queue for immediate execution on the cloud
worker.queue
# OR schedule it for a later time and have it repeat if you want
worker.schedule(:start_at=>1.hours.since, :run_every=>3600)
# Can check the current status too
worker.status
Your code and data will be sent to the cloud and executed.
Coming soon... very soon.