Class: Serializer
- Inherits:
-
Object
- Object
- Serializer
- 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
-
#object ⇒ Object
Returns the value of attribute object.
-
#scope ⇒ Object
Returns the value of attribute scope.
Class Method Summary collapse
- .attribute(key, condition: nil, from: nil, serializer: nil, **options) ⇒ Object
- .attributes ⇒ Object
Instance Method Summary collapse
-
#initialize(object, scope: {}) ⇒ Serializer
constructor
A new instance of Serializer.
-
#to_h ⇒ Object
Loops over all attributes and skips if a condition is defined and falsey.
- #to_json ⇒ Object
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
#object ⇒ Object
Returns the value of attribute object.
17 18 19 |
# File 'lib/serializer.rb', line 17 def object @object end |
#scope ⇒ Object
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, **) attributes.push(Attribute.new(key, condition, from, serializer, )) end |
.attributes ⇒ Object
9 10 11 |
# File 'lib/serializer.rb', line 9 def self.attributes @attributes ||= [] end |
Instance Method Details
#to_h ⇒ Object
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_json ⇒ Object
33 34 35 |
# File 'lib/serializer.rb', line 33 def to_json(*) Oj.dump(to_h, mode: :json) end |