You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by la...@apache.org on 2009/03/07 21:55:54 UTC

svn commit: r751328 - in /buildr/trunk: CHANGELOG doc/pages/languages.textile

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