Class: ActiveModel::Serializers::Xml::Serializer::Attribute
- Defined in:
- activemodel/lib/active_model/serializers/xml.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #decorations ⇒ Object
-
#initialize(name, serializable, value) ⇒ Attribute
constructor
A new instance of Attribute.
Constructor Details
#initialize(name, serializable, value) ⇒ Attribute
Returns a new instance of Attribute.
18 19 20 21 22 23 |
# File 'activemodel/lib/active_model/serializers/xml.rb', line 18 def initialize(name, serializable, value) @name, @serializable = name, serializable value = value.in_time_zone if value.respond_to?(:in_time_zone) @value = value @type = compute_type end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name
16 17 18 |
# File 'activemodel/lib/active_model/serializers/xml.rb', line 16 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type
16 17 18 |
# File 'activemodel/lib/active_model/serializers/xml.rb', line 16 def type @type end |
#value ⇒ Object (readonly)
Returns the value of attribute value
16 17 18 |
# File 'activemodel/lib/active_model/serializers/xml.rb', line 16 def value @value end |
Instance Method Details
#decorations ⇒ Object
25 26 27 28 29 30 31 |
# File 'activemodel/lib/active_model/serializers/xml.rb', line 25 def decorations decorations = {} decorations[:encoding] = 'base64' if type == :binary decorations[:type] = (type == :string) ? nil : type decorations[:nil] = true if value.nil? decorations end |