simple_worker 1.0.0.beta → 1.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
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
 
@@ -34,6 +34,7 @@ module SimpleWorker
34
34
  @unmerged = {}
35
35
  @merged_gems = {}
36
36
  @unmerged_gems = {}
37
+ @mailers = {}
37
38
 
38
39
  end
39
40
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: simple_worker
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 6
5
- version: 1.0.0.beta
5
+ version: 1.0.0.beta2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Travis Reeder