lib/xmlhasher.rb in xmlhasher-1.0.5 vs lib/xmlhasher.rb in xmlhasher-1.0.6
- old
+ new
@@ -20,7 +20,11 @@
def method_missing(method_name, *args, &block)
return super unless parser.respond_to?(method_name)
parser.send(method_name, *args, &block)
end
+
+ def respond_to_missing?(method_name, include_private = false)
+ super
+ end
end
end