blob: 9e269d4dede1d021d5a81538ea248a6e5a707e8f (
plain) (
tree)
|
|
module ActiveResource
module Formats
module JsonFormat
extend self
def extension
"json"
end
def mime_type
"application/json"
end
def encode(hash, options={})
hash.to_json
end
def decode(json)
ActiveSupport::JSON.decode(json)
end
end
end
end
|