backburner 1.4.0 → 1.4.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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c37d62cede36418881281ed1e7da9293db41cc6d
4
- data.tar.gz: 2348422b939c94a4fa7d2ed62bae148eac97d78f
3
+ metadata.gz: 174517c1affdf586cdd239cbb8ac805e1fcd1f92
4
+ data.tar.gz: e26c736cdb790119a3a4b58a3cb267d1bad9edb1
5
5
  SHA512:
6
- metadata.gz: ef295e9609ba6e52dea4c468dbcdc8b152ece6ef77d7202349aa49b9f496beee8cf71712982f3d248d80e8f17491b21810351a4c9912fd35e9a204878a6827ba
7
- data.tar.gz: 63751243abb07484e4638cfb51832063b5a3f2c0cd8eb24e8b55f241b0fa68aff8c80690bbd759790c66797356205a6b0c04a72503bf40ebf0e9323e959982f4
6
+ metadata.gz: 1c106cf2657f606b65ad6817197650582104bb58d22160bbda9a5bbfdae85f58c6bdd5453ffc0df491a9d88d8d6f3db7de4b4a1a87de2f6a4a73cc8561c53209
7
+ data.tar.gz: b739580e0c435c2038bea4751f5e1efc964ff23381986bfbd051873f95165cb9fc0089d0e4c203854785b383ee4e17def330b0455060a68dc7ae186263aa3b64
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## Version 1.4.1 (June 10 2017)
4
+
5
+ * Fix warning for constant ::Fixnum is deprecated (@amatsuda)
6
+
3
7
  ## Version 1.4.0 (May 13 2017)
4
8
 
5
9
  * Fix unit tests to be more consistent (@eltone)
@@ -114,7 +114,7 @@ module Backburner
114
114
  resolve_priority(pri.queue_priority)
115
115
  elsif pri.is_a?(String) || pri.is_a?(Symbol) # named priority
116
116
  resolve_priority(Backburner.configuration.priority_labels[pri.to_sym])
117
- elsif pri.is_a?(Fixnum) # numerical
117
+ elsif pri.is_a?(Integer) # numerical
118
118
  pri
119
119
  else # default
120
120
  Backburner.configuration.default_priority
@@ -131,7 +131,7 @@ module Backburner
131
131
  def resolve_respond_timeout(ttr)
132
132
  if ttr.respond_to?(:queue_respond_timeout)
133
133
  resolve_respond_timeout(ttr.queue_respond_timeout)
134
- elsif ttr.is_a?(Fixnum) # numerical
134
+ elsif ttr.is_a?(Integer) # numerical
135
135
  ttr
136
136
  else # default
137
137
  Backburner.configuration.respond_timeout
@@ -1,3 +1,3 @@
1
1
  module Backburner
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backburner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-14 00:00:00.000000000 Z
11
+ date: 2017-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: beaneater