Module: Representable::JSON
- Extended by:
- Hash::ClassMethods
- Includes:
- Hash
- Included in:
- Collection
- Defined in:
- lib/representable/json.rb,
lib/representable/json/hash.rb,
lib/representable/json/collection.rb
Overview
Brings #to_json and #from_json to your object.
Defined Under Namespace
Modules: ClassMethods, Collection, Hash
Class Method Summary collapse
Instance Method Summary collapse
-
#from_json(data, *args) ⇒ Object
(also: #parse)
Parses the body as JSON and delegates to #from_hash.
-
#to_json(*args) ⇒ Object
(also: #render)
Returns a JSON string representing this object.
Methods included from Hash::ClassMethods
collection_representer_class, format_engine
Class Method Details
.included(base) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/representable/json.rb', line 14 def self.included(base) base.class_eval do include Representable # either in Hero or HeroRepresentation. extend ClassMethods # DISCUSS: do that only for classes? register_feature Representable::JSON end end |
Instance Method Details
#from_json(data, *args) ⇒ Object Also known as: parse
Parses the body as JSON and delegates to #from_hash.
35 36 37 38 |
# File 'lib/representable/json.rb', line 35 def from_json(data, *args) data = MultiJson.load(data) from_hash(data, *args) end |
#to_json(*args) ⇒ Object Also known as: render
Returns a JSON string representing this object.
41 42 43 |
# File 'lib/representable/json.rb', line 41 def to_json(*args) MultiJson.dump to_hash(*args) end |