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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Yjk3ODRmZTJjMjlkY2U4YTJkMmQ0YmQ3Y2UzMjQzNGZkMDQwNjZmMA==
4
+ MmFiZmI4MGFjN2RkYmJjM2MzNWY5YzNhMWVhZDM2NTJlNTNkNzg3NA==
5
5
  data.tar.gz: !binary |-
6
- YjI3Y2VmOTJhYjM5M2I5YWYyYWNmYTFjZWVmMDRiYWYyODNjZDM5Mw==
6
+ Njk4ZjAzM2YxMmJkMGU2NjAxMTE1ZmNlZDQ3MTUxNGJiZDNiNWU4NQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- OTBhOGJiMDM5M2QxMDJlNTA1Y2M2NmZmYmFkMjRkMTk2Y2NmNzgwOWNkOGI2
10
- N2ZhYTU1YjM4NjE2NmYyMmNjMGY3OGI1MjUwNzBkN2ZjZDcwYzBkZDE1Njgz
11
- NGQ4YWVjYjA2YzViYTU2ZWMzODAzNWI4MmEzNzJhNThiMWQ0OTg=
9
+ OWJlNWRhMThlNmJlYjk2NjU2ZDhhOTYwNzhlZWYwNjRjZjVjZjAwMDEzNDc5
10
+ MmM5NjE0MzZhODU3NWFiY2Y0ZTlkZDg4MDU1YzVkZWQyMmZlNGI4MWEzYzU0
11
+ OGUxYTI4NzMwNWJlMzI3YmYxNTQzZDYzNWE3MmMxNTc5ZTUxZGI=
12
12
  data.tar.gz: !binary |-
13
- ZjdiNTU5MWRjZDNlYTUwYjk1ZjY0YTFlNjE5YjBiOTYzY2FlMDVhYjgyODA3
14
- NjAzYzBlMGZkNmQyOGRmYmViOTYzZjNmZjc1MzBhYjI2ODE1ZTQyYzA4Y2My
15
- NGM1MjVmZmY2NmFmNzI1ZTEyNGVlMzIxNGVmMmU3NTUzZTQzZjc=
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::Workers
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::Workers.enqueue "#{config._id}-#{queue_name}", payload
22
+ Fanforce::Worker.enqueue "#{config._id}-#{queue_name}", payload
23
23
  end
24
24
 
25
25
  def self.config(&block)
@@ -1,5 +1,5 @@
1
1
  class Fanforce
2
2
  module PluginFactory
3
- VERSION = '0.20.0'
3
+ VERSION = '0.20.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fanforce-plugin-factory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Clark