Module: ActiveResource::Formats::JsonFormat

Extended by:
JsonFormat
Included in:
JsonFormat
Defined in:
lib/active_resource/formats/json_format.rb

Instance Method Summary collapse

Instance Method Details

#decode(json) ⇒ Object



18
19
20
# File 'lib/active_resource/formats/json_format.rb', line 18

def decode(json)
  ActiveSupport::JSON.decode(json)
end

#encode(hash, options = nil) ⇒ Object



14
15
16
# File 'lib/active_resource/formats/json_format.rb', line 14

def encode(hash, options = nil)
  ActiveSupport::JSON.encode(hash, options)
end

#extensionObject



6
7
8
# File 'lib/active_resource/formats/json_format.rb', line 6

def extension
  "json"
end

#mime_typeObject



10
11
12
# File 'lib/active_resource/formats/json_format.rb', line 10

def mime_type
  "application/json"
end