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/04/02 23:55:12 UTC

svn commit: r644082 - /incubator/buildr/trunk/addon/buildr/nailgun.rb

Author: vborja
Date: Wed Apr  2 14:55:11 2008
New Revision: 644082

URL: http://svn.apache.org/viewvc?rev=644082&view=rev
Log:
Documentation mentions buildr/nailgun instead of buildr/java/nailgun

Modified:
    incubator/buildr/trunk/addon/buildr/nailgun.rb

Modified: incubator/buildr/trunk/addon/buildr/nailgun.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/addon/buildr/nailgun.rb?rev=644082&r1=644081&r2=644082&view=diff
==============================================================================
--- incubator/buildr/trunk/addon/buildr/nailgun.rb (original)
+++ incubator/buildr/trunk/addon/buildr/nailgun.rb Wed Apr  2 14:55:11 2008
@@ -115,7 +115,7 @@
           also specify the nailgun_home on your buildfile with the following
           code:
               
-              require 'buildr/java/nailgun'
+              require 'buildr/nailgun'
               Buildr::Nailgun.home = File.expand_path('~/.jruby/tool/nailgun')
 
           Buildr will also check that the nailgun client binary (ng.exe for 
@@ -127,7 +127,7 @@
           The buildr server binds itself to localhost, port 2113. You can 
           override this on your buildfile, by placing the following code:
 
-              require 'buildr/java/nailgun'
+              require 'buildr/nailgun'
               Buildr::Nailgun.server = '127.0.0.1'
               Buildr::Nailgun.port = 2233
 
@@ -146,7 +146,7 @@
           buildr runtimes begin life, to be later added on the buildr queue.
           By default both queues are of size 3, you can customize this with:
 
-              require 'buildr/java/nailgun'
+              require 'buildr/nailgun'
               Buildr::Nailgun.jruby_queue_size = 4 # JRuby creation is fast!
               Buildr::Nailgun.buildr_queue_size = 5 # loading buildr takes longer