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

ruby-changes:19684

From: drbrain <ko1@a...>
Date: Wed, 25 May 2011 09:38:36 +0900 (JST)
Subject: [ruby-changes:19684] drbrain:r31729 (trunk): * lib/benchmark.rb: Restore nodoc for Benchmark::Job and

drbrain	2011-05-25 09:38:30 +0900 (Wed, 25 May 2011)

  New Revision: 31729

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

  Log:
    * lib/benchmark.rb:  Restore nodoc for Benchmark::Job and
      Benchmark::Report.  [Ruby 1.9 - Bug #4726]

  Modified files:
    trunk/ChangeLog
    trunk/lib/benchmark.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31728)
+++ ChangeLog	(revision 31729)
@@ -1,3 +1,8 @@
+Wed May 25 09:35:31 2011  Eric Hodel  <drbrain@s...>
+
+	* lib/benchmark.rb:  Restore nodoc for Benchmark::Job and
+	  Benchmark::Report.  [Ruby 1.9 - Bug #4726]
+
 Wed May 25 09:29:38 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/net/pop.rb:  Hide implementation details from RDoc.
Index: lib/benchmark.rb
===================================================================
--- lib/benchmark.rb	(revision 31728)
+++ lib/benchmark.rb	(revision 31729)
@@ -302,7 +302,7 @@
   # A Job is a sequence of labelled blocks to be processed by the
   # Benchmark.bmbm method.  It is of little direct interest to the user.
   #
-  class Job
+  class Job # :nodoc:
     #
     # Returns an initialized Job instance.
     # Usually, one doesn't call this method directly, as new
@@ -340,7 +340,7 @@
   # This class is used by the Benchmark.benchmark and Benchmark.bm methods.
   # It is of little direct interest to the user.
   #
-  class Report
+  class Report # :nodoc:
     #
     # Returns an initialized Report instance.
     # Usually, one doesn't call this method directly, as new

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

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