Class: Representable::XML::Binding::Attribute
- Inherits:
-
Representable::XML::Binding
- Object
- Binding
- Representable::XML::Binding
- Representable::XML::Binding::Attribute
- Defined in:
- lib/representable/xml/binding.rb
Overview
Represents a tag attribute. Currently this only works on the top-level tag.
Instance Attribute Summary
Attributes inherited from Binding
Instance Method Summary collapse
Methods inherited from Representable::XML::Binding
build_for, #deserialize_from, #deserialize_method, #serialize_method, #serialize_node
Methods inherited from Binding
#[], #array?, #as, build, #compile_fragment, #default_for, #evaluate_option, #get, #getter, #has_default?, #initialize, #name, #parse_filter, #read_fragment, #render_filter, #render_fragment, #representable?, #representer_module, #representer_module_for, #set, #setter, #skipable_empty_value?, #typed?, #uncompile_fragment, #write_fragment
Constructor Details
This class inherits a constructor from Representable::Binding
Instance Method Details
#read(node) ⇒ Object
142 143 144 |
# File 'lib/representable/xml/binding.rb', line 142 def read(node) node[as] end |
#serialize_for(value, parent) ⇒ Object
146 147 148 |
# File 'lib/representable/xml/binding.rb', line 146 def serialize_for(value, parent) parent[as] = value.to_s end |
#write(parent, value) ⇒ Object
150 151 152 |
# File 'lib/representable/xml/binding.rb', line 150 def write(parent, value) serialize_for(value, parent) end |