hashlib 0.0.23 → 0.0.24
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/hashlib.rb +1 -1
- metadata +2 -2
data/lib/hashlib.rb
CHANGED
@@ -138,7 +138,7 @@ class Hash
|
|
138
138
|
end
|
139
139
|
|
140
140
|
def each_recurse(options={}, &block)
|
141
|
-
options[:root] = self if options[:root].nil?
|
141
|
+
options[:root] = self.clone() if options[:root].nil?
|
142
142
|
options[:path] = [] if options[:path].nil?
|
143
143
|
|
144
144
|
options[:root].each do |k,v|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hashlib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.24
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -40,7 +40,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
40
|
version: '0'
|
41
41
|
requirements: []
|
42
42
|
rubyforge_project:
|
43
|
-
rubygems_version: 1.8.
|
43
|
+
rubygems_version: 1.8.23
|
44
44
|
signing_key:
|
45
45
|
specification_version: 3
|
46
46
|
summary: Useful utility methods for working with Ruby hashes
|