From b3901a20a47c8babe7dfb07e40e1121191954309 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 21 May 2016 02:12:55 +0000 Subject: [PATCH] Restore documentation of ARGF * io.c (Init_IO): [DOC] define dummy ARGF instead of ARGF.class to re-enable the generation of ARGF documentation. [Fix GH-1358] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ io.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cae59ca8de..8c33030d6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat May 21 11:12:53 2016 Dan Martinez + + * io.c (Init_IO): [DOC] define dummy ARGF instead of ARGF.class to + re-enable the generation of ARGF documentation. [Fix GH-1358] + Sat May 21 11:07:29 2016 0x01f7 * doc/syntax/methods.rdoc (Method Names): add proper closing tag. diff --git a/io.c b/io.c index f4cc940865..5508ec7a2b 100644 --- a/io.c +++ b/io.c @@ -12425,7 +12425,7 @@ Init_IO(void) #if 0 /* Hack to get rdoc to regard ARGF as a class: */ - rb_cARGF = rb_define_class("ARGF.class", rb_cObject); + rb_cARGF = rb_define_class("ARGF", rb_cObject); #endif rb_cARGF = rb_class_new(rb_cObject);