如果我在对象空间中有一堆类并且有一个也从对象空间生成的方法列表,是否有可能获取单个方法的 rdoc 文档?
例子:
文件:foo.rb
# Class rdoc information here
class foo
# defining bar here, just prints hello world
def bar
puts "hello world"
end
end
文件:baz.rb
require 'foo.rb'
puts "I want to print out the rdoc portion of method bar here"