rails_push_queues 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +1 -6
- data/lib/rails_push_queues/engine.rb +3 -3
- data/lib/rails_push_queues/main.rb +2 -0
- data/lib/rails_push_queues/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d46b09ef2e2f78707f75cc07ed4d93b12fb5eb48
|
4
|
+
data.tar.gz: c22924e57e7865334879f6db9fc5ce35f3aab412
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbc2ae58ece7410f8890b1d1e760ed5155ad236dcc5d49c510d54efc0105b1f66f3ed29b9b620308a0c35103292c7d5a15b6e2510326d6acad1e46999041812b
|
7
|
+
data.tar.gz: 19f99c8e7404646f5301ffeb34adf1de2c101b3ecc6a66d882928b63bba6dd0785f826b377442a982933238e707e6aa40370c63530c44b689703ca1e382fda7f
|
data/README.md
CHANGED
@@ -6,12 +6,7 @@ You can easily use Resque and/or Sidekiq workers without change.
|
|
6
6
|
|
7
7
|
## Set Iron configs
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
```
|
12
|
-
config.iron_token = 'X'
|
13
|
-
config.iron_project_id = 'Y'
|
14
|
-
```
|
9
|
+
LINK TO iron config stuff, iron.json or ENV vars.
|
15
10
|
|
16
11
|
## Register the workers
|
17
12
|
|
@@ -6,10 +6,10 @@ module RailsPushQueues
|
|
6
6
|
|
7
7
|
initializer "RailsPushQueues.init" do |app|
|
8
8
|
puts "CONFIG STUFF:"
|
9
|
-
RailsPushQueues.iron_token = app.config.iron_token
|
10
|
-
RailsPushQueues.iron_project_id = app.config.iron_project_id
|
9
|
+
# RailsPushQueues.iron_token = app.config.iron_token
|
10
|
+
# RailsPushQueues.iron_project_id = app.config.iron_project_id
|
11
11
|
|
12
|
-
RailsPushQueues.comm = RailsPushQueues::
|
12
|
+
RailsPushQueues.comm = RailsPushQueues::QueueComm.new
|
13
13
|
|
14
14
|
end
|
15
15
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_push_queues
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Travis Reeder
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 4.0.3
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: iron_mq
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 5.0.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 5.0.0
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: sqlite3
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|