mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Import RDoc 2.5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9b40cdfe8c
commit
46580b5147
176 changed files with 17841 additions and 16457 deletions
64
lib/rdoc/normal_module.rb
Normal file
64
lib/rdoc/normal_module.rb
Normal file
|
@ -0,0 +1,64 @@
|
|||
require 'rdoc/class_module'
|
||||
|
||||
##
|
||||
# A normal module, like NormalClass
|
||||
|
||||
class RDoc::NormalModule < RDoc::ClassModule
|
||||
|
||||
##
|
||||
# Included NormalModules
|
||||
|
||||
alias ancestors includes
|
||||
|
||||
def inspect # :nodoc:
|
||||
"#<%s:0x%x module %s includes: %p attributes: %p methods: %p aliases: %p>" % [
|
||||
self.class, object_id,
|
||||
full_name, @includes, @attributes, @method_list, @aliases
|
||||
]
|
||||
end
|
||||
|
||||
##
|
||||
# This is a module, returns true
|
||||
|
||||
def module?
|
||||
true
|
||||
end
|
||||
|
||||
def pretty_print q # :nodoc:
|
||||
q.group 2, "[module #{full_name}: ", "]" do
|
||||
q.breakable
|
||||
q.text "includes:"
|
||||
q.breakable
|
||||
q.seplist @includes do |inc| q.pp inc end
|
||||
q.breakable
|
||||
|
||||
q.text "attributes:"
|
||||
q.breakable
|
||||
q.seplist @attributes do |inc| q.pp inc end
|
||||
q.breakable
|
||||
|
||||
q.text "methods:"
|
||||
q.breakable
|
||||
q.seplist @method_list do |inc| q.pp inc end
|
||||
q.breakable
|
||||
|
||||
q.text "aliases:"
|
||||
q.breakable
|
||||
q.seplist @aliases do |inc| q.pp inc end
|
||||
q.breakable
|
||||
|
||||
q.text "comment:"
|
||||
q.breakable
|
||||
q.pp comment
|
||||
end
|
||||
end
|
||||
|
||||
##
|
||||
# Modules don't have one, raises NoMethodError
|
||||
|
||||
def superclass
|
||||
raise NoMethodError, "#{full_name} is a module"
|
||||
end
|
||||
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue