Module: Her::Model::Parse::ClassMethods
- Defined in:
- lib/castle-her/model/parse.rb
Instance Method Summary collapse
-
#include_root_in_json(value, options = {}) ⇒ Object
Return or change the value of ‘include_root_in_json`.
-
#parse_root_in_json(value, options = {}) ⇒ Object
Return or change the value of ‘parse_root_in_json`.
-
#request_new_object_on_build(value = nil) ⇒ Object
Return or change the value of ‘request_new_object_on_build`.
-
#root_element(value = nil) ⇒ Object
Return or change the value of ‘root_element`.
Instance Method Details
#include_root_in_json(value, options = {}) ⇒ Object
Return or change the value of ‘include_root_in_json`
79 80 81 82 |
# File 'lib/castle-her/model/parse.rb', line 79 def include_root_in_json(value, = {}) @_her_include_root_in_json = value @_her_include_root_in_json_format = [:format] end |
#parse_root_in_json(value, options = {}) ⇒ Object
Return or change the value of ‘parse_root_in_json`
101 102 103 104 |
# File 'lib/castle-her/model/parse.rb', line 101 def parse_root_in_json(value, = {}) @_her_parse_root_in_json = value @_her_parse_root_in_json_format = [:format] end |
#request_new_object_on_build(value = nil) ⇒ Object
Return or change the value of ‘request_new_object_on_build`
113 114 115 |
# File 'lib/castle-her/model/parse.rb', line 113 def request_new_object_on_build(value = nil) @_her_request_new_object_on_build = value end |
#root_element(value = nil) ⇒ Object
Return or change the value of ‘root_element`. Always defaults to the base name of the class.
128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/castle-her/model/parse.rb', line 128 def root_element(value = nil) if value.nil? if json_api_format? @_her_root_element ||= self.name.split("::").last.pluralize.underscore.to_sym else @_her_root_element ||= self.name.split("::").last.underscore.to_sym end else @_her_root_element = value.to_sym end end |