mirror of
https://github.com/github/rails.git
synced 2026-02-05 11:45:13 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7518 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
23 lines
354 B
Ruby
23 lines
354 B
Ruby
module ActiveResource
|
|
module Formats
|
|
module JsonFormat
|
|
extend self
|
|
|
|
def extension
|
|
"json"
|
|
end
|
|
|
|
def mime_type
|
|
"application/json"
|
|
end
|
|
|
|
def encode(hash)
|
|
hash.to_json
|
|
end
|
|
|
|
def decode(json)
|
|
ActiveSupport::JSON.decode(json)
|
|
end
|
|
end
|
|
end
|
|
end |