Class: Serializer

Inherits:
Object
  • Object
show all
Defined in:
lib/serializer.rb,
lib/serializer/version.rb

Defined Under Namespace

Classes: Attribute

Constant Summary collapse

VERSION =
'1.1.7'.freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object, scope: {}) ⇒ Serializer

Returns a new instance of Serializer.



19
20
21
22
# File 'lib/serializer.rb', line 19

def initialize(object, scope: {})
  @object = object
  @scope = scope
end

Instance Attribute Details

#objectObject

Returns the value of attribute object.



17
18
19
# File 'lib/serializer.rb', line 17

def object
  @object
end

#scopeObject

Returns the value of attribute scope.



17
18
19
# File 'lib/serializer.rb', line 17

def scope
  @scope
end

Class Method Details

.attribute(key, condition: nil, from: nil, serializer: nil, **options) ⇒ Object



13
14
15
# File 'lib/serializer.rb', line 13

def self.attribute(key, condition: nil, from: nil, serializer: nil, **options)
  attributes.push(Attribute.new(key, condition, from, serializer, options))
end

.attributesObject



9
10
11
# File 'lib/serializer.rb', line 9

def self.attributes
  @attributes ||= []
end

Instance Method Details

#to_hObject

Loops over all attributes and skips if a condition is defined and falsey



25
26
27
28
29
30
31
# File 'lib/serializer.rb', line 25

def to_h
  self.class.attributes.each_with_object({}) do |attribute, obj|
    next if attribute.condition && !public_send(attribute.condition)

    obj[attribute.key] = ValueFetcher.fetch(attribute, object, self)
  end
end

#to_jsonObject



33
34
35
# File 'lib/serializer.rb', line 33

def to_json(*)
  Oj.dump(to_h, mode: :json)
end