You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by vb...@apache.org on 2008/10/21 04:58:38 UTC

svn commit: r706499 - in /incubator/buildr/trunk: addon/buildr/drb.rb doc/pages/more_stuff.textile

Author: vborja
Date: Mon Oct 20 19:58:38 2008
New Revision: 706499

URL: http://svn.apache.org/viewvc?rev=706499&view=rev
Log:
Documentation fixes for drb addon.

The sample 'dbuildr' script doesn't needs to load 'buildr', otherwise it would be nonsense to use drb at all.

Modified:
    incubator/buildr/trunk/addon/buildr/drb.rb
    incubator/buildr/trunk/doc/pages/more_stuff.textile

Modified: incubator/buildr/trunk/addon/buildr/drb.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/addon/buildr/drb.rb?rev=706499&r1=706498&r2=706499&view=diff
==============================================================================
--- incubator/buildr/trunk/addon/buildr/drb.rb (original)
+++ incubator/buildr/trunk/addon/buildr/drb.rb Mon Oct 20 19:58:38 2008
@@ -31,7 +31,6 @@
   # 
   #   #!/usr/bin/env ruby
   #   require 'rubygems'
-  #   require 'buildr'
   #   require 'buildr/drb'
   #   Buildr::DRbApplication.run
   #
@@ -39,10 +38,10 @@
   #
   #   dbuildr clean compile
   #
-  # The 'dbuildr' will start the server if there isn't one already running.
+  # The dbuildr script will run as the server if there isn't one already running.
   # Subsequent calls to dbuildr will act as the client and invoke the tasks you
-  # provide to the server.
-  # If the buildfile has been modified it will be reloaded on the server app.
+  # provide in the server.
+  # If the buildfile has been modified it will be reloaded on the BuildrServer.
   #
   # JRuby users can use a nailgun client to invoke tasks as fast as possible
   # without having to incur JVM startup time.

Modified: incubator/buildr/trunk/doc/pages/more_stuff.textile
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/doc/pages/more_stuff.textile?rev=706499&r1=706498&r2=706499&view=diff
==============================================================================
--- incubator/buildr/trunk/doc/pages/more_stuff.textile (original)
+++ incubator/buildr/trunk/doc/pages/more_stuff.textile Mon Oct 20 19:58:38 2008
@@ -99,7 +99,6 @@
 {{{!ruby
 #!/usr/bin/env ruby
 require 'rubygems'
-require 'buildr'
 require 'buildr/drb'
 Buildr::DRbApplication.run
 }}}
@@ -113,7 +112,7 @@
 @dbuildr@ will start the BuildrServer if there isn't one already running.
 Subsequent calls to dbuildr will act as the client and invoke the tasks you
 provide to the server.
-If the buildfile has been modified it will be reloaded on the server app.
+If the buildfile has been modified it will be reloaded on the BuildrServer.
 
 h3. Nailgun