mirror of
https://github.com/github/rails.git
synced 2026-02-06 12:15:17 -05:00
24 lines
352 B
Ruby
24 lines
352 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(options)
|
|
end
|
|
|
|
def decode(json)
|
|
ActiveSupport::JSON.decode(json)
|
|
end
|
|
end
|
|
end
|
|
end
|