1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activeresource/lib/active_resource/formats/json_format.rb

24 lines
352 B
Ruby
Raw Normal View History

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(options)
end
def decode(json)
ActiveSupport::JSON.decode(json)
end
end
end
end