Return-Path: Delivered-To: apmail-buildr-commits-archive@www.apache.org Received: (qmail 93112 invoked from network); 7 Mar 2009 20:56:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Mar 2009 20:56:16 -0000 Received: (qmail 37628 invoked by uid 500); 7 Mar 2009 20:56:16 -0000 Delivered-To: apmail-buildr-commits-archive@buildr.apache.org Received: (qmail 37602 invoked by uid 500); 7 Mar 2009 20:56:15 -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 37593 invoked by uid 99); 7 Mar 2009 20:56:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2009 12:56:15 -0800 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; Sat, 07 Mar 2009 20:56:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DFD9823889B7; Sat, 7 Mar 2009 20:55:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r751328 - in /buildr/trunk: CHANGELOG doc/pages/languages.textile Date: Sat, 07 Mar 2009 20:55:54 -0000 To: commits@buildr.apache.org From: lacton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090307205554.DFD9823889B7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: lacton Date: Sat Mar 7 20:55:52 2009 New Revision: 751328 URL: http://svn.apache.org/viewvc?rev=751328&view=rev Log: Documentation update to reflect policy change regarding scala support. Modified: buildr/trunk/CHANGELOG buildr/trunk/doc/pages/languages.textile Modified: buildr/trunk/CHANGELOG URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=751328&r1=751327&r2=751328&view=diff ============================================================================== --- buildr/trunk/CHANGELOG (original) +++ buildr/trunk/CHANGELOG Sat Mar 7 20:55:52 2009 @@ -10,7 +10,7 @@ * Added: BUILDR-222: Support Git as a version control system * Added BUILDR-223 Release Task: customizable commit message * Added: Info message "Packaging filename.ext" now displayed for packaging tasks -* Change: require 'buildr/scala' is now official required to use Scala features +* Change: require 'buildr/scala' is now officially required to use Scala features * Change: Introduced new options from Rake 0.8.3: -I (libdir), -R (rakelib), --rules, --no-search, --silent. * Change: Upgraded to Rubyforge 1.0.1. Modified: buildr/trunk/doc/pages/languages.textile URL: http://svn.apache.org/viewvc/buildr/trunk/doc/pages/languages.textile?rev=751328&r1=751327&r2=751328&view=diff ============================================================================== --- buildr/trunk/doc/pages/languages.textile (original) +++ buildr/trunk/doc/pages/languages.textile Sat Mar 7 20:55:52 2009 @@ -139,7 +139,13 @@ > export SCALA_HOME=/path/to/scala-2.7.1 }}} -The @SCALA_HOME@ base directory should be such that Scala core libraries are located directly under the "lib" subdirectory, and Scala scripts are under the "bin" directory. +The @SCALA_HOME@ base directory should be such that Scala core libraries are located directly under the "lib" subdirectory, and Scala scripts are under the "bin" directory. + +You must also require the Scala compiler in your buildfile: + +{{{!ruby +require 'buildr/scala' +}}} h3. Compiling Scala