Class: RDoc::SingleClass
- Inherits:
-
ClassModule
- Object
- CodeObject
- Context
- ClassModule
- RDoc::SingleClass
- Defined in:
- lib/rdoc/single_class.rb
Overview
A singleton class
Constant Summary
Constants inherited from ClassModule
Constants inherited from Context
Context::TOMDOC_TITLES, Context::TOMDOC_TITLES_SORT, Context::TYPES
Constants included from Text
Text::MARKUP_FORMAT, Text::TO_HTML_CHARACTERS
Instance Attribute Summary
Attributes inherited from ClassModule
#comment_location, #constant_aliases, #diagram, #is_alias_for
Attributes inherited from Context
#aliases, #attributes, #block_params, #constants, #constants_hash, #current_section, #extends, #external_aliases, #in_files, #includes, #method_list, #methods_hash, #name, #params, #requires, #temporary_section, #unmatched_alias_lists, #visibility
Attributes inherited from CodeObject
#comment, #document_children, #document_self, #done_documenting, #file, #force_documentation, #line, #metadata, #offset, #parent, #received_nodoc, #section, #store, #viewer
Instance Method Summary collapse
-
#ancestors ⇒ Object
Adds the superclass to the included modules.
-
#definition ⇒ Object
The definition of this singleton class,
class << MyClassName
.
Methods inherited from ClassModule
#add_comment, #add_things, #aref, #aref_prefix, #clear_comment, #comment=, #complete, #description, #document_self_or_methods, #documented?, #each_ancestor, #find_ancestor_local_symbol, #find_class_named, from_module, #full_name, #initialize, #marshal_dump, #marshal_load, #merge, #merge_collections, #merge_sections, #module?, #name=, #name_for_path, #non_aliases, #parse, #path, #remove_nodoc_children, #remove_things, #search_record, #store=, #superclass, #superclass=, #to_s, #type, #update_aliases, #update_extends, #update_includes
Methods inherited from Context
#<=>, #add, #add_alias, #add_attribute, #add_class, #add_class_or_module, #add_constant, #add_extend, #add_include, #add_method, #add_module, #add_module_alias, #add_require, #add_section, #add_to, #any_content, #child_name, #class_attributes, #class_method_list, #classes, #classes_and_modules, #classes_hash, #defined_in?, #display, #each_ancestor, #each_attribute, #each_classmodule, #each_constant, #each_extend, #each_include, #each_method, #each_section, #find_attribute, #find_attribute_named, #find_class_method_named, #find_constant_named, #find_enclosing_module_named, #find_external_alias, #find_external_alias_named, #find_file_named, #find_instance_method_named, #find_local_symbol, #find_method, #find_method_named, #find_module_named, #find_symbol, #find_symbol_module, #full_name, #fully_documented?, #http_url, #initialize, #initialize_methods_etc, #instance_attributes, #instance_method_list, #methods_by_type, #methods_matching, #modules, #modules_hash, #name_for_path, #ongoing_visibility=, #record_location, #remove_from_documentation?, #remove_invisible, #remove_invisible_in, #resolve_aliases, #section_contents, #sections, #sections_hash, #set_current_section, #set_visibility_for, #sort_sections, #to_s, #top_level, #upgrade_to_class
Methods inherited from CodeObject
#display?, #documented?, #each_parent, #file_name, #full_name=, #ignore, #ignored?, #initialize, #initialize_visibility, #options, #parent_file_name, #parent_name, #record_location, #start_doc, #stop_doc, #suppress, #suppressed?
Methods included from Generator::Markup
#aref_to, #as_href, #cvs_url, #description, #formatter
Methods included from Text
encode_fallback, #expand_tabs, #flush_left, #markup, #normalize_comment, #parse, #snippet, #strip_hashes, #strip_newlines, #strip_stars, #to_html, #wrap
Constructor Details
This class inherits a constructor from RDoc::ClassModule
Instance Method Details
#ancestors ⇒ Object
Adds the superclass to the included modules.
9 10 11 |
# File 'lib/rdoc/single_class.rb', line 9 def ancestors superclass ? super + [superclass] : super end |
#definition ⇒ Object
The definition of this singleton class, class << MyClassName
16 17 18 |
# File 'lib/rdoc/single_class.rb', line 16 def definition "class << #{full_name}" end |