module XmlHasher

Constants

VERSION

Public Class Methods

parser() click to toggle source
# File lib/xmlhasher_with_attributes.rb, line 12
def parser
  @parser ||= XmlHasher::Parser.new(options)
end

Private Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/xmlhasher_with_attributes.rb, line 18
def method_missing(method_name, *args, &block)
  return super unless parser.respond_to?(method_name)
  parser.send(method_name, *args, &block)
end