A TopLevel context is a representation of the contents of a single file
Creates a new TopLevel for the file at
absolute_name. If documentation is being generated outside
the source dir relative_name is relative to the source
directory.
# File rdoc/top_level.rb, line 42
def initialize absolute_name, relative_name = absolute_name
super()
@name = nil
@absolute_name = absolute_name
@relative_name = relative_name
@file_stat = File.stat(absolute_name) rescue nil # HACK for testing
@diagram = nil
@parser = nil
@classes_or_modules = []
end
An RDoc::TopLevel is equal to another with the same #relative_name
# File rdoc/top_level.rb, line 57
def == other
self.class === other and @relative_name == other.relative_name
end
Adds an_alias to Object instead of
self.
# File rdoc/top_level.rb, line 66
def add_alias(an_alias)
object_class.record_location self
return an_alias unless @document_self
object_class.add_alias an_alias
end
Adds constant to Object instead of
self.
# File rdoc/top_level.rb, line 75
def add_constant constant
object_class.record_location self
return constant unless @document_self
object_class.add_constant constant
end
Adds include to Object instead of
self.
# File rdoc/top_level.rb, line 84
def add_include(include)
object_class.record_location self
return include unless @document_self
object_class.add_include include
end
Adds method to Object instead of
self.
# File rdoc/top_level.rb, line 93
def add_method(method)
object_class.record_location self
return method unless @document_self
object_class.add_method method
end
Adds class or module mod. Used in the building phase by the
ruby parser.
# File rdoc/top_level.rb, line 103
def add_to_classes_or_modules mod
@classes_or_modules << mod
end
Base name of this file
# File rdoc/top_level.rb, line 110
def base_name
File.basename @relative_name
end
Returns a URL for this source file on some web repository. Use the -W command line option to set.
# File rdoc/generator/markup.rb, line 158
def cvs_url
url = @store.rdoc.options.webcvs
if /%s/ =~ url then
url % @relative_name
else
url + @relative_name
end
end
Only a TopLevel that contains text file) will be displayed. See also RDoc::CodeObject#display?
# File rdoc/top_level.rb, line 120
def display?
text? and super
end
See RDoc::TopLevel::find_class_or_module
# File rdoc/top_level.rb, line 130
def find_class_or_module name
@store.find_class_or_module name
end
Finds a class or module named symbol
# File rdoc/top_level.rb, line 137
def find_local_symbol(symbol)
find_class_or_module(symbol) || super
end
Finds a module or class with name
# File rdoc/top_level.rb, line 144
def find_module_named(name)
find_class_or_module(name)
end
Returns the relative name of this file
# File rdoc/top_level.rb, line 151
def full_name
@relative_name
end
An RDoc::TopLevel has the same hash as another with the same #relative_name
# File rdoc/top_level.rb, line 159
def hash
@relative_name.hash
end
URL for this with a prefix
# File rdoc/top_level.rb, line 166
def http_url(prefix)
path = [prefix, @relative_name.tr('.', '_')]
File.join(*path.compact) + '.html'
end
Time this file was last modified, if known
# File rdoc/top_level.rb, line 184
def last_modified
@file_stat ? file_stat.mtime : nil
end
Dumps this TopLevel for use by ri. See also marshal_load
# File rdoc/top_level.rb, line 191
def marshal_dump
[
MARSHAL_VERSION,
@relative_name,
@parser,
parse(@comment),
]
end
Returns the NormalClass “Object”, creating it if not found.
Records self as a location in “Object”.
# File rdoc/top_level.rb, line 217
def object_class
@object_class ||= begin
oc = @store.find_class_named('Object') || add_class(RDoc::NormalClass, 'Object')
oc.record_location self
oc
end
end
Base name of this file without the extension
# File rdoc/top_level.rb, line 228
def page_name
basename = File.basename @relative_name
basename =~ /\.(rb|rdoc|txt|md)$/
$` || basename
end
Path to this file for use with HTML generator output.
# File rdoc/top_level.rb, line 238
def path
http_url @store.rdoc.generator.file_dir
end
Search record used by RDoc::Generator::JsonIndex
# File rdoc/top_level.rb, line 256
def search_record
return unless @parser < RDoc::Parser::Text
[
page_name,
'',
page_name,
'',
path,
'',
snippet(@comment),
]
end
Is this TopLevel from a text file instead of a source code file?
# File rdoc/top_level.rb, line 273
def text?
@parser and @parser.ancestors.include? RDoc::Parser::Text
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.