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

ruby-changes:30452

From: zzak <ko1@a...>
Date: Mon, 12 Aug 2013 13:00:02 +0900 (JST)
Subject: [ruby-changes:30452] zzak:r42531 (trunk): * ext/dbm/extconf.rb: [DOC] Hide from RDoc

zzak	2013-08-12 12:59:50 +0900 (Mon, 12 Aug 2013)

  New Revision: 42531

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

  Log:
    * ext/dbm/extconf.rb: [DOC] Hide from RDoc
      Some libraries might want to document extconf.rb so RDoc treats it
      like any other ruby program. However, DBM users shouldn't care about
      these methods.

  Modified files:
    trunk/ChangeLog
    trunk/ext/dbm/extconf.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 42530)
+++ ChangeLog	(revision 42531)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Aug 12 12:57:26 2013  Zachary Scott  <e@z...>
+
+	* ext/dbm/extconf.rb: [DOC] Hide from RDoc
+	  Some libraries might want to document extconf.rb so RDoc treats it
+	  like any other ruby program. However, DBM users shouldn't care about
+	  these methods.
+
 Mon Aug 12 12:53:39 2013  Zachary Scott  <e@z...>
 
 	* ext/dbm/dbm.c: [DOC] Reformat headings of DBM class
Index: ext/dbm/extconf.rb
===================================================================
--- ext/dbm/extconf.rb	(revision 42530)
+++ ext/dbm/extconf.rb	(revision 42531)
@@ -14,6 +14,7 @@ https://github.com/ruby/ruby/blob/trunk/ext/dbm/extconf.rb#L14
 #   qdbm        QDBM (libqdbm)
 #   ndbm        Some legacy OS may have libndbm.
 
+# :stopdoc:
 require 'mkmf'
 
 dir_config("dbm")
@@ -268,3 +269,4 @@ if dblib.any? {|db| headers.fetch(db, [" https://github.com/ruby/ruby/blob/trunk/ext/dbm/extconf.rb#L269
   convertible_int("datum.dsize", headers.found, headers.defs)
   create_makefile("dbm")
 end
+# :startdoc:

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

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