This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.
can_parse(file_name)
Return a parser that can handle a particular extension
# File lib/rdoc/parsers/parserfactory.rb, line 62 def ParserFactory.can_parse(file_name) @@parsers.find {|p| p.regexp.match(file_name) } end