This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
load_method(klass_name, method_name)
public
Loads ri data for method_name in klass_name
# File lib/rdoc/ri/store.rb, line 204
def load_method klass_name, method_name
open method_file(klass_name, method_name), 'rb' do |io|
Marshal.load io.read
end
end