chockstone 0.3.1 → 0.3.2
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.
- data/chockstone.gemspec +1 -1
- data/lib/chockstone/connection.rb +1 -1
- metadata +1 -1
data/chockstone.gemspec
CHANGED
|
@@ -190,7 +190,7 @@ module Chockstone
|
|
|
190
190
|
|
|
191
191
|
def key_to_sym hash
|
|
192
192
|
return hash unless hash.is_a?(Hash)
|
|
193
|
-
hash = hash.inject({}){|memo,(k,v)| memo[k.to_sym] =
|
|
193
|
+
hash = hash.inject({}){|memo,(k,v)| memo[k.to_sym] = key_to_sym(v); memo}
|
|
194
194
|
hash
|
|
195
195
|
end
|
|
196
196
|
end
|