A module for some Utility methods.
This Method tries to find the first module that implements the method named methodname in the array of ancestors. If this fails nil is returned.
# File lib/protocol.rb, line 742 def find_method_module(methodname, ancestors) methodname = methodname.to_s ancestors.each do |a| begin a.instance_method(methodname) return a rescue NameError end end nil end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.