Class: ActiveModel::Serializer::ErrorsSerializer
- Inherits:
-
Object
- Object
- ActiveModel::Serializer::ErrorsSerializer
- Includes:
- Enumerable
- Defined in:
- lib/active_model/serializer/errors_serializer.rb
Instance Attribute Summary collapse
-
#object ⇒ Object
readonly
Returns the value of attribute object.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
Instance Method Summary collapse
-
#initialize(resources, options = {}) ⇒ ErrorsSerializer
constructor
A new instance of ErrorsSerializer.
- #json_key ⇒ Object
- #success? ⇒ Boolean
Constructor Details
#initialize(resources, options = {}) ⇒ ErrorsSerializer
Returns a new instance of ErrorsSerializer.
12 13 14 15 16 17 18 19 |
# File 'lib/active_model/serializer/errors_serializer.rb', line 12 def initialize(resources, = {}) @root = [:root] @object = resources @serializers = resources.map do |resource| serializer_class = .fetch(:serializer) { ActiveModel::Serializer::ErrorSerializer } serializer_class.new(resource, .except(:serializer)) end end |
Instance Attribute Details
#object ⇒ Object (readonly)
Returns the value of attribute object.
10 11 12 |
# File 'lib/active_model/serializer/errors_serializer.rb', line 10 def object @object end |
#root ⇒ Object (readonly)
Returns the value of attribute root.
10 11 12 |
# File 'lib/active_model/serializer/errors_serializer.rb', line 10 def root @root end |
Instance Method Details
#json_key ⇒ Object
25 26 27 |
# File 'lib/active_model/serializer/errors_serializer.rb', line 25 def json_key nil end |
#success? ⇒ Boolean
21 22 23 |
# File 'lib/active_model/serializer/errors_serializer.rb', line 21 def success? false end |