active_job_resque_solo 0.3.6 → 0.3.7

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e576b269397dbeb89060ff9c61e5a69caa8ce1a
4
- data.tar.gz: 062cc5191489c3ea3b9f72973ef2c6f2c6390e48
3
+ metadata.gz: 72502b86b6c49cfeb92e359f9340a3737dba7981
4
+ data.tar.gz: e03691514ce1c21284e3387046cec327b6231ccd
5
5
  SHA512:
6
- metadata.gz: 528d986523b13a9beeafdc2cf183c424ffce635be44f0711c6baa0cbbc3d93b496bdf92b037254e427ebe76f8160e2baed7996aaff7c24bcb2291be0227d0851
7
- data.tar.gz: 77326de1b615f8b5db5532e93fcf37de4bf18bf15e5d2c03faf86fe8a76362e5ebfd1af7933dba1b2b005c771fa5885fb06bb7d36d387117629c4f85116cb592
6
+ metadata.gz: 33698ec7e0d40e624378bd4d46d90b2becb2ec92a731a0752b9f1accd709135f33ce4fe523e1b0afbeabc0ddd96a2319758d1ff8b0164f0442e8233b492818ad
7
+ data.tar.gz: 58dfa53e53233c4eeda6359ad2e07bf31bc6a14643c2647da9e932c35824a3dc01b01d4780e33718440dc5acbf7fe75cac4872953e9e40264d848e45101f34bc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.3.7
2
+
3
+ * Fix bug that would prevent resque-scheduler from enqueuing jobs with no arguments.
4
+
1
5
  # 0.3.6
2
6
 
3
7
  * Fix bug that would allow duplicate enqueues of jobs that had no arguments.
@@ -80,7 +80,6 @@ module ActiveJob
80
80
  def job_with_args_eq?(job_class, job_arguments, wrapper_args)
81
81
  return false if wrapper_args['job_class'] != job_class
82
82
  encoded_arguments = wrapper_args['arguments']
83
- encoded_arguments = [] if encoded_arguments.nil?
84
83
  encoded_arguments = job_args(encoded_arguments)
85
84
  encoded_arguments == job_arguments
86
85
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveJobResqueSolo
2
- VERSION = "0.3.6"
2
+ VERSION = "0.3.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_job_resque_solo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phillip Kinkade
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-03 00:00:00.000000000 Z
11
+ date: 2017-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails