README.markdown in simple_worker-1.0.0.beta vs README.markdown in simple_worker-1.0.0.beta2
- old
+ new
@@ -27,23 +27,9 @@
SimpleWorker.configure do |config|
config.access_key = ACCESS_KEY
config.secret_key = SECRET_KEY
end
-
-Configure SimpleWorker in Rails
-----------------------
-
-If you're using Rails you could set additional config option - "auto_merge=true".
-It will automatically merge all models,mailers,gems and database configuration from your Rails app.
-
- SimpleWorker.configure do |config|
- config.access_key = ACCESS_KEY
- config.secret_key = SECRET_KEY
- config.auto_merge = true
- end
-
-
Write a Worker
--------------
Here's an example worker that sends an email: