pebblebed 0.0.52 → 0.0.53
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/pebblebed/rspec_helper.rb +1 -1
- data/lib/pebblebed/version.rb +1 -1
- metadata +1 -1
@@ -58,7 +58,7 @@ module Pebblebed
|
|
58
58
|
if hash and hash.is_a?(Hash)
|
59
59
|
hash.keys.each do |key|
|
60
60
|
val = hash.delete(key)
|
61
|
-
hash[key.to_s] = val.is_a?(Hash) ?
|
61
|
+
hash[key.to_s] = val.is_a?(Hash) ? deep_stringify_keys(val) : val
|
62
62
|
end
|
63
63
|
end
|
64
64
|
hash
|
data/lib/pebblebed/version.rb
CHANGED