Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rdoc/parser/rd.rb

Parent

Methods

Included Modules

Class/Module Index [+]

Quicksearch

RDoc::Parser::RD

Parse a RD format file. The parsed RDoc::Markup::Document is attached as a file comment.

Public Instance Methods

scan() click to toggle source

Creates an rd-format TopLevel for the given file.

 
               # File rdoc/parser/rd.rb, line 14
def scan
  comment = RDoc::Comment.new @content, @top_level
  comment.format = 'rd'

  @top_level.comment = comment
end