fanforce-plugin-factory 0.20.0 → 0.20.1
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 +8 -8
- data/README.md +1 -1
- data/lib/fanforce/plugin_factory.rb +1 -1
- data/lib/fanforce/plugin_factory/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MmFiZmI4MGFjN2RkYmJjM2MzNWY5YzNhMWVhZDM2NTJlNTNkNzg3NA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Njk4ZjAzM2YxMmJkMGU2NjAxMTE1ZmNlZDQ3MTUxNGJiZDNiNWU4NQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OWJlNWRhMThlNmJlYjk2NjU2ZDhhOTYwNzhlZWYwNjRjZjVjZjAwMDEzNDc5
|
|
10
|
+
MmM5NjE0MzZhODU3NWFiY2Y0ZTlkZDg4MDU1YzVkZWQyMmZlNGI4MWEzYzU0
|
|
11
|
+
OGUxYTI4NzMwNWJlMzI3YmYxNTQzZDYzNWE3MmMxNTc5ZTUxZGI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MDNkYWFiNGJlMzMzYTcyOGI0ZmY5ZDE5NTQyMjY1NGQ5ZDgxMTg5MGU2ODcy
|
|
14
|
+
OGI1MjNkZWNlOTc3YTEwNWE4YmNjNmM1MjI5N2RhMWYzNDRhOGY5NDhiOWM0
|
|
15
|
+
ZjhlOWMyMzFkZWM5MmQwOWVmZThlMDI4YWE3Nzc2NTI2Yzg3ZGU=
|
data/README.md
CHANGED
|
@@ -215,7 +215,7 @@ FanforcePlugin.config do |config|
|
|
|
215
215
|
end
|
|
216
216
|
```
|
|
217
217
|
|
|
218
|
-
# Using Fanforce::
|
|
218
|
+
# Using Fanforce::Worker
|
|
219
219
|
|
|
220
220
|
FanforcePlugin includes the fanforce-workers gem by default and includes a convenience helper method. FanforcePlugin.enqueue
|
|
221
221
|
will prefix the name of your worker with the name of your plugin to ensure there are no conflicts across multiple plugins
|
|
@@ -19,7 +19,7 @@ caller[0].split(':')[0] =~ /^(.+(config\.ru|Rakefile))$/ ? ROOT_DIR = File.dirna
|
|
|
19
19
|
module FanforcePlugin
|
|
20
20
|
|
|
21
21
|
def self.enqueue(queue_name, payload)
|
|
22
|
-
Fanforce::
|
|
22
|
+
Fanforce::Worker.enqueue "#{config._id}-#{queue_name}", payload
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
def self.config(&block)
|