module XmlHasher
Constants
- VERSION
Public Class Methods
parser()
click to toggle source
# File lib/xmlhasher.rb, line 14 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.rb, line 20 def method_missing(method_name, *args, &block) return super unless parser.respond_to?(method_name) parser.send(method_name, *args, &block) end
respond_to_missing?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/xmlhasher.rb, line 26 def respond_to_missing?(method_name, include_private = false) super end