Module: ActiveResource::Formats::JsonFormat
- Extended by:
- JsonFormat
- Included in:
- JsonFormat
- Defined in:
- lib/active_resource/formats/json_format.rb
Instance Method Summary collapse
- #decode(json) ⇒ Object
- #encode(hash, options = nil) ⇒ Object
- #extension ⇒ Object
- #mime_type ⇒ Object
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, = nil) ActiveSupport::JSON.encode(hash, ) end |
#extension ⇒ Object
6 7 8 |
# File 'lib/active_resource/formats/json_format.rb', line 6 def extension "json" end |
#mime_type ⇒ Object
10 11 12 |
# File 'lib/active_resource/formats/json_format.rb', line 10 def mime_type "application/json" end |