README.markdown in simple_worker-0.7.4 vs README.markdown in simple_worker-1.0.0.beta
- old
+ new
@@ -1,5 +1,14 @@
+KNOWN ISSUES IN NEW VERSION
+=====
+
+- Cancel chain will not work because we don't have parent task it. Do we need it though?
+We could just allow kill all by class name and that would be sufficient? (see runner.rb add_sw_params)
+
+
+
+
Getting Started
===============
[Sign up for a SimpleWorker account][1], it's free to try!
@@ -249,9 +258,20 @@
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 Mailers
+---------------------
+
+You could easily merge mailers you're using in your application.
+
+ merge_mailer 'mailer_file' #if your mailer's templates are placed in default path
+ #or
+ merge_mailer 'mailer_file', {:path_to_templates=>"templates_path"}#if you're using mailer outside of rails with custom templates path
+
+if you already set auto_merge=true all your mailers already merged.
Merging Gems
---------------------
This allows you to use any gem you'd like with SimpleWorker. This uses the same syntax as bundler gem files.