lookup_method(name, klass)
Finds the method
# File lib/rdoc/ri/driver.rb, line 544 def lookup_method(name, klass) cache = load_cache_for klass return nil unless cache method = cache[name.gsub('.', '#')] method = cache[name.gsub('.', '::')] unless method method end