You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2010/04/01 05:02:09 UTC

svn commit: r929792 - in /buildr/trunk: CHANGELOG lib/buildr/core/doc.rb lib/buildr/packaging/artifact.rb

Author: toulmean
Date: Thu Apr  1 03:02:09 2010
New Revision: 929792

URL: http://svn.apache.org/viewvc?rev=929792&view=rev
Log:
fix for BUILDR-411

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/core/doc.rb
    buildr/trunk/lib/buildr/packaging/artifact.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=929792&r1=929791&r2=929792&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Thu Apr  1 03:02:09 2010
@@ -109,7 +109,7 @@
 * Fixed:  Removed redundant tracing of command arguments
 * Fixed:  filter.using(hash) now correctly substitutes mappings with boolean
           "false" value
-
+* Fixed:  BUILDR-411: fix for RDoc generation
 1.3.5 (2009-10-05)
 * Added:  Interactive shell (REPL) support
 * Added:  BeanShell as default shell for java projects, bsh is small and it's

Modified: buildr/trunk/lib/buildr/core/doc.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/doc.rb?rev=929792&r1=929791&r2=929792&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/doc.rb (original)
+++ buildr/trunk/lib/buildr/core/doc.rb Thu Apr  1 03:02:09 2010
@@ -74,8 +74,8 @@ module Buildr
       # Returns the documentation tool options.
       attr_reader :options
 
-      # :nodoc:
-      attr_reader :project
+      
+      attr_reader :project # :nodoc:
 
       def initialize(*args) #:nodoc:
         super

Modified: buildr/trunk/lib/buildr/packaging/artifact.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/packaging/artifact.rb?rev=929792&r1=929791&r2=929792&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/packaging/artifact.rb (original)
+++ buildr/trunk/lib/buildr/packaging/artifact.rb Thu Apr  1 03:02:09 2010
@@ -41,6 +41,8 @@ module Buildr
 
     class << self
     private
+    
+      # :stopdoc:
       def included(mod)
         mod.extend self
       end
@@ -58,6 +60,8 @@ module Buildr
         base.instance_eval { alias :uninstall :uninstall_old } if base.respond_to? :uninstall_old
         base.instance_eval { alias :upload :upload_old       } if base.respond_to? :upload_old
       end
+      
+      # :startdoc:
     end
 
     # The artifact identifier.