[前][次][番号順一覧][スレッド一覧]

ruby-changes:19681

From: drbrain <ko1@a...>
Date: Wed, 25 May 2011 09:24:02 +0900 (JST)
Subject: [ruby-changes:19681] drbrain:r31726 (trunk): * ext/zlib/zlib.c: Fix Document-method declarations. Improve

drbrain	2011-05-25 09:19:37 +0900 (Wed, 25 May 2011)

  New Revision: 31726

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31726

  Log:
    * ext/zlib/zlib.c:  Fix Document-method declarations.  Improve
      Zlib::GzipFile's method catalog.  [Ruby 1.9 - Bug #4695]

  Modified files:
    trunk/ChangeLog
    trunk/ext/zlib/zlib.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31725)
+++ ChangeLog	(revision 31726)
@@ -1,3 +1,8 @@
+Wed May 25 09:19:17 2011  Eric Hodel  <drbrain@s...>
+
+	* ext/zlib/zlib.c:  Fix Document-method declarations.  Improve
+	  Zlib::GzipFile's method catalog.  [Ruby 1.9 - Bug #4695]
+
 Wed May 25 08:22:12 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/erb.rb:  Hide documentation for implementation details of ERB.
Index: ext/zlib/zlib.c
===================================================================
--- ext/zlib/zlib.c	(revision 31725)
+++ ext/zlib/zlib.c	(revision 31726)
@@ -2678,29 +2678,27 @@
  *
  * == Method Catalogue
  *
- * - wrap
- * - open
+ * - ::wrap
+ * - ::open (Zlib::GzipReader::open and Zlib::GzipWriter::open)
  * - #close
  * - #closed?
  * - #comment
- * - #comment=
+ * - comment= (Zlib::GzipWriter#comment=)
  * - #crc
- * - #eof?
+ * - eof? (Zlib::GzipReader#eof?)
  * - #finish
  * - #level
- * - #lineno
- * - #lineno=
+ * - lineno (Zlib::GzipReader#lineno)
+ * - lineno= (Zlib::GzipReader#lineno=)
  * - #mtime
- * - #mtime=
+ * - mtime= (Zlib::GzipWriter#mtime=)
  * - #orig_name
- * - #orig_name=
+ * - orig_name (Zlib::GzipWriter#orig_name=)
  * - #os_code
- * - #path
+ * - path (when the underlying IO supports #path)
  * - #sync
  * - #sync=
  * - #to_io
- * - #total_in
- * - #total_out
  *
  * (due to internal structure, documentation may appear under Zlib::GzipReader
  * or Zlib::GzipWriter)
@@ -2899,7 +2897,7 @@
 }
 
 /*
- * Document-method: Zlib::GzipFile#set_lineno
+ * Document-method: Zlib::GzipReader#lineno=
  *
  * Specify line number of the last row read from this file.
  */
@@ -2912,7 +2910,7 @@
 }
 
 /*
- * Document-method: Zlib::GzipFile#set_mtime
+ * Document-method: Zlib::GzipWriter#mtime=
  *
  * Specify the modification time (+mtime+) in the gzip header.
  * Using a Fixnum or Integer
@@ -2938,7 +2936,7 @@
 }
 
 /*
- * Document-method: Zlib::GzipFile#set_orig_name
+ * Document-method: Zlib::GzipFile#orig_name=
  *
  * Specify the original name (+str+) in the gzip header.
  */

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]