Method: XMLMapping.included
- Defined in:
- lib/xmlmapping.rb
.included(mod) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/xmlmapping.rb', line 27 def self.included(mod) mod.extend(ClassMethods) mod.instance_variable_set("@raw_mappings", {}) mod.instance_variable_set("@mappings", { :element => {}, :attribute => {}, :text => {}, :namespace => nil}) end |