module XmlMapper class Attribute < Item attr_accessor :default # @see Item#initialize # Additional options: # :default => Object The default value for this def initialize(name, type, o={}) super self.default = o[:default] end def find(node, namespace, xpath_options) if options[:xpath] yield(node.xpath(options[:xpath],xpath_options)) else yield(node[tag]) end end end end