mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
25 lines
427 B
Ruby
25 lines
427 B
Ruby
require 'active_support/json'
|
|
|
|
module ActiveResource
|
|
module Formats
|
|
module JsonFormat
|
|
extend self
|
|
|
|
def extension
|
|
"json"
|
|
end
|
|
|
|
def mime_type
|
|
"application/json"
|
|
end
|
|
|
|
def encode(hash, options = nil)
|
|
ActiveSupport::JSON.encode(hash, options)
|
|
end
|
|
|
|
def decode(json)
|
|
Formats.remove_root(ActiveSupport::JSON.decode(json))
|
|
end
|
|
end
|
|
end
|
|
end
|