Bug #1318
closedRi documentation missing for BasicObject methods instance_eval, method_missing, __send__
Description
=begin
It seems that ri does not find the documentation for three instance methods of BasicObject, namely instance_eval, method_missing, and send. All three of these seem to have a documentation in the vm_eval.c source file, but this is somehow not built to the ri documentation.
This is using ruby-1.9.1-p0 built from source on an amd64 linux debian system. (The online docs at "http://www.ruby-doc.org/core-1.9/index.html" are also missing these methods.)
Thanks in advance,
Ambrus
=end
Updated by yugui (Yuki Sonoda) over 15 years ago
- Assignee set to yugui (Yuki Sonoda)
- Target version changed from 1.9.1 to 1.9.2
=begin
=end
Updated by mame (Yusuke Endoh) over 14 years ago
- Category changed from doc to lib
- Assignee changed from yugui (Yuki Sonoda) to drbrain (Eric Hodel)
=begin
Hi, Eric
How about adding BasicObject to known classes?
diff --git a/lib/rdoc/known_classes.rb b/lib/rdoc/known_classes.rb
index dbb1802..3e63ab0 100644
--- a/lib/rdoc/known_classes.rb
+++ b/lib/rdoc/known_classes.rb
@@ -6,6 +6,7 @@ module RDoc
KNOWN_CLASSES = {
"rb_cArray" => "Array",
"rb_cBignum" => "Bignum",
- "rb_cBasicObject" => "BasicObject",
"rb_cClass" => "Class",
"rb_cData" => "Data",
"rb_cDir" => "Dir",
--
Yusuke Endoh mame@tsg.ne.jp
=end
Updated by drbrain (Eric Hodel) over 14 years ago
- Status changed from Open to Closed
=begin
Patch applied. Thank you.
=end