simple_worker 1.0.0.beta → 1.0.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +0 -14
- data/lib/simple_worker/config.rb +1 -0
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -29,20 +29,6 @@ You really just need your access keys.
|
|
|
29
29
|
config.secret_key = SECRET_KEY
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
Configure SimpleWorker in Rails
|
|
34
|
-
----------------------
|
|
35
|
-
|
|
36
|
-
If you're using Rails you could set additional config option - "auto_merge=true".
|
|
37
|
-
It will automatically merge all models,mailers,gems and database configuration from your Rails app.
|
|
38
|
-
|
|
39
|
-
SimpleWorker.configure do |config|
|
|
40
|
-
config.access_key = ACCESS_KEY
|
|
41
|
-
config.secret_key = SECRET_KEY
|
|
42
|
-
config.auto_merge = true
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
|
|
46
32
|
Write a Worker
|
|
47
33
|
--------------
|
|
48
34
|
|
data/lib/simple_worker/config.rb
CHANGED