This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
get_class(class_entry)
public
Return a class description
# File lib/rdoc/ri/reader.rb, line 54
def get_class(class_entry)
result = nil
for path in class_entry.path_names
path = RDoc::RI::Writer.class_desc_path(path, class_entry)
desc = File.open(path) {|f| RDoc::RI::Description.deserialize(f) }
if result
result.merge_in(desc)
else
result = desc
end
end
result
end