Module: Her::Model::Parse::ClassMethods

Defined in:
lib/her/model/parse.rb

Instance Method Summary collapse

Instance Method Details

#include_root_in_json(value, options = {}) ⇒ Object

Return or change the value of ‘include_root_in_json`

Examples:

class User
  include Her::Model
  include_root_in_json true
end


82
83
84
85
# File 'lib/her/model/parse.rb', line 82

def include_root_in_json(value, options = {})
  @_her_include_root_in_json = value
  @_her_include_root_in_json_format = options[:format]
end

#parse_root_in_json(value, options = {}) ⇒ Object

Return or change the value of ‘parse_root_in_json`

Examples:

class User
  include Her::Model
  parse_root_in_json true
end

class User
  include Her::Model
  parse_root_in_json true, format: :active_model_serializers
end

class User
  include Her::Model
  parse_root_in_json true, format: :json_api
end


104
105
106
107
# File 'lib/her/model/parse.rb', line 104

def parse_root_in_json(value, options = {})
  @_her_parse_root_in_json = value
  @_her_parse_root_in_json_format = options[:format]
end

#request_new_object_on_build(value = nil) ⇒ Object

Return or change the value of ‘request_new_object_on_build`

Examples:

class User
  include Her::Model
  request_new_object_on_build true
end


116
117
118
# File 'lib/her/model/parse.rb', line 116

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.

Examples:

class User
  include Her::Model
  parse_root_in_json true
  root_element :huh
end

user = User.find(1) # { :huh => { :id => 1, :name => "Tobias" } }
user.name # => "Tobias"


131
132
133
134
135
136
137
138
139
140
141
# File 'lib/her/model/parse.rb', line 131

def root_element(value = nil)
  if value.nil?
    @_her_root_element ||= if json_api_format?
                             name.split("::").last.pluralize.underscore.to_sym
                           else
                             name.split("::").last.underscore.to_sym
                           end
  else
    @_her_root_element = value.to_sym
  end
end