Sha256: 1597b1c8c00158ad8e21db696562febf6f1802986932e537ac370edb7d5ec5aa
Contents?: true
Size: 375 Bytes
Versions: 61
Compression:
Stored size: 375 Bytes
Contents
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) ActiveSupport::JSON.decode(json) end end end end
Version data entries
61 entries across 60 versions & 11 rubygems