instiki/vendor/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