Return-Path: Delivered-To: apmail-buildr-commits-archive@www.apache.org Received: (qmail 11697 invoked from network); 1 Mar 2010 10:06:54 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Mar 2010 10:06:54 -0000 Received: (qmail 6663 invoked by uid 500); 28 Feb 2010 02:00:14 -0000 Delivered-To: apmail-buildr-commits-archive@buildr.apache.org Received: (qmail 6636 invoked by uid 500); 28 Feb 2010 02:00:14 -0000 Mailing-List: contact commits-help@buildr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@buildr.apache.org Delivered-To: mailing list commits@buildr.apache.org Received: (qmail 6629 invoked by uid 99); 28 Feb 2010 02:00:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Feb 2010 02:00:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Feb 2010 02:00:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DFAD423889DD; Sun, 28 Feb 2010 01:59:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r917088 - /buildr/trunk/doc/languages.textile Date: Sun, 28 Feb 2010 01:59:41 -0000 To: commits@buildr.apache.org From: boisvert@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100228015941.DFAD423889DD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: boisvert Date: Sun Feb 28 01:59:41 2010 New Revision: 917088 URL: http://svn.apache.org/viewvc?rev=917088&view=rev Log: BUILDR-343: Update default JRuby version in documentation Modified: buildr/trunk/doc/languages.textile Modified: buildr/trunk/doc/languages.textile URL: http://svn.apache.org/viewvc/buildr/trunk/doc/languages.textile?rev=917088&r1=917087&r2=917088&view=diff ============================================================================== --- buildr/trunk/doc/languages.textile (original) +++ buildr/trunk/doc/languages.textile Sun Feb 28 01:59:41 2010 @@ -101,9 +101,9 @@ {% endhighlight %} -h4. JBehave +h4. JBehave -"JBehave":http://jbehave.org/ is a pure Java BDD framework, stories and behaviour specifications are written in the Java language. +"JBehave":http://jbehave.org/ is a pure Java BDD framework, stories and behaviour specifications are written in the Java language. To use JBehave in your project you can select it with @test.using :jbehave@. @@ -139,9 +139,9 @@ {% highlight ruby %} define 'foo' do # ... - + doc.from projects('foo:bar', 'foo') - + define 'bar' do # ... end @@ -156,7 +156,7 @@ {% highlight ruby %} define 'foo' do # ... - + doc :windowtitle => 'Abandon All Hope, Ye Who Enter Here', :private => true end {% endhighlight %} @@ -272,17 +272,17 @@ class PropertyTestSuite extends FunSuite { var properties = Map[String, Any]() - + test("testProperty") { assert(properties("name") === "value") } - protected override def runTests(testName: Option[String], - reporter: Reporter, stopper: Stopper, includes: Set[String], + protected override def runTests(testName: Option[String], + reporter: Reporter, stopper: Stopper, includes: Set[String], excludes: Set[String], properties: Map[String, Any]) { - this.properties = properties; - super.runTests(testName, reporter, stopper, + this.properties = properties; + super.runTests(testName, reporter, stopper, includes, excludes, properties) } } @@ -319,7 +319,7 @@ define 'killer-app' do ... - + test.with MOCKITO, CGLIB, ASM, OBJENESIS end {% endhighlight %} @@ -365,9 +365,9 @@ {% highlight ruby %} define 'foo' do # ... - + doc.from projects('foo:bar', 'foo') - + define 'bar' do # ... end @@ -382,7 +382,7 @@ {% highlight ruby %} define 'foo' do # ... - + doc :windowtitle => 'Abandon All Hope, Ye Who Enter Here', :private => true end {% endhighlight %} @@ -439,9 +439,9 @@ h4. EasyB -"EasyB":http://www.easyb.org/ is a BDD framework using "Groovy":http://groovy.codehaus.org/. +"EasyB":http://www.easyb.org/ is a BDD framework using "Groovy":http://groovy.codehaus.org/. -Specifications are written in the Groovy language, of course you get seamless Java integration as with all things groovy. +Specifications are written in the Groovy language, of course you get seamless Java integration as with all things groovy. To use this framework in your project you can select it with @test.using :easyb@. @@ -473,9 +473,9 @@ {% highlight ruby %} define 'foo' do # ... - + doc.from projects('foo:bar', 'foo') - + define 'bar' do # ... end @@ -490,7 +490,7 @@ {% highlight ruby %} define 'foo' do # ... - + doc :windowtitle => 'Abandon All Hope, Ye Who Enter Here', :private => true end {% endhighlight %} @@ -510,15 +510,15 @@ p(tip). When not running on JRuby, Buildr will use the @JRUBY_HOME@ environment variable to find the JRuby installation directory. If no @JRUBY_HOME@ is set or it points to an empty directory, Buildr will prompt you to either install JRuby manually or let it extract it for you. -You can use the @build.yaml@ settings file to specify a particular version of JRuby (defaults to @1.1.4@). For example: +You can use the @build.yaml@ settings file to specify a particular version of JRuby (defaults to @1.4.0@ as of Buildr 1.3.5). For example: {% highlight yaml %} -jruby: 1.1.3 +jruby: 1.3.1 {% endhighlight %} h4. RSpec -"RSpec":http://rspec.info/ is the de-facto BDD framework for ruby. It's the framework used to test Buildr itself. +"RSpec":http://rspec.info/ is the de-facto BDD framework for ruby. It's the framework used to test Buildr itself. To use this framework in your project you can select it with @test.using :rspec@.