sidekiq 2.5.0 → 2.5.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq might be problematic. Click here for more details.

data/Changes.md CHANGED
@@ -1,3 +1,8 @@
1
+ 2.5.1
2
+ -----------
3
+
4
+ - Fix issues with core\_ext
5
+
1
6
  2.5.0
2
7
  -----------
3
8
 
@@ -55,13 +55,13 @@ begin
55
55
  require 'active_support/core_ext/hash/keys'
56
56
  rescue LoadError
57
57
  class Hash
58
- def stringify_keys(hash)
59
- hash.keys.each do |key|
60
- hash[key.to_s] = hash.delete(key)
58
+ def stringify_keys
59
+ keys.each do |key|
60
+ self[key.to_s] = delete(key)
61
61
  end
62
- hash
62
+ self
63
63
  end
64
- end if !{}.responds_to(:stringify_keys)
64
+ end if !{}.respond_to?(:stringify_keys)
65
65
  end
66
66
 
67
67
  begin
@@ -78,7 +78,7 @@ rescue LoadError
78
78
  end
79
79
  constant
80
80
  end
81
- end if !"".responds_to(:constantize)
81
+ end if !"".respond_to?(:constantize)
82
82
  end
83
83
 
84
84
 
@@ -1,3 +1,3 @@
1
1
  module Sidekiq
2
- VERSION = "2.5.0"
2
+ VERSION = "2.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: