mirror of
https://github.com/github/rails.git
synced 2026-02-16 09:05:14 -05:00
Signed-off-by: Tarmo Tänav <tarmo@itech.ee> Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
24 lines
343 B
Ruby
24 lines
343 B
Ruby
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
|