README.markdown in simple_worker-0.5.5 vs README.markdown in simple_worker-0.5.6

- old
+ new

@@ -121,10 +121,14 @@ The log will be available for viewing via the SimpleWorker UI or via log in the API: SimpleWorker.service.log(job_id) +or if you still have a handle to your worker object: + + worker.get_log + Setting Progress ---------------- This is just a way to let your users know where the job is at if required. @@ -215,9 +219,19 @@ Merging other workers is a bit different than merging other code like above because they will be uploaded separately and treated as distinctly separate workers. merge_worker "./other_worker.rb", "OtherWorker" + +Merging Gems +--------------------- + +This allows you to use any gem you'd like with SimpleWorker. + + merge_gem "some_gem" + merge_gem "some_gem_with_version", "1.2.3" + +[Check here for more info on merge_gem](http://support.simpleworker.com/kb/working-with-simpleworker/merging-gems-into-your-worker). Configuration Options ---------------------