# File lib/fog/core/json.rb, line 28defself.decode(obj)
MultiJson.decode(obj)
end
encode(obj)click to toggle source
Do the MultiJson introspection at this level so we can define our
encode/decode methods and perform the introspection only once rather than
once per call.
# File lib/fog/core/json.rb, line 24defself.encode(obj)
MultiJson.encode(obj)
end