Class: RI::ClassEntry

Inherits:
Object show all
Defined in:
lib/bitclust/ridatabase.rb

Overview

reopen

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#instance_methodsObject (readonly)

Returns the value of attribute instance_methods.



149
150
151
# File 'lib/bitclust/ridatabase.rb', line 149

def instance_methods
  @instance_methods
end

Instance Method Details

#method_entriesObject



151
152
153
154
# File 'lib/bitclust/ridatabase.rb', line 151

def method_entries
  @class_methods.sort_by {|m| m.name } +
  @instance_methods.sort_by {|m| m.name }
end

#singleton_methodsObject



145
146
147
# File 'lib/bitclust/ridatabase.rb', line 145

def singleton_methods
  @class_methods
end