You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2009/02/17 22:51:04 UTC

svn commit: r745262 - /buildr/trunk/lib/buildr/java/compiler.rb

Author: boisvert
Date: Tue Feb 17 21:51:04 2009
New Revision: 745262

URL: http://svn.apache.org/viewvc?rev=745262&view=rev
Log:
Improve documentation for :other (suggested by Sander Sõnajalg)

Modified:
    buildr/trunk/lib/buildr/java/compiler.rb

Modified: buildr/trunk/lib/buildr/java/compiler.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/compiler.rb?rev=745262&r1=745261&r2=745262&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/compiler.rb (original)
+++ buildr/trunk/lib/buildr/java/compiler.rb Tue Feb 17 21:51:04 2009
@@ -36,7 +36,8 @@
     # * :source      -- Source code compatibility.
     # * :target      -- Bytecode compatibility.
     # * :lint        -- Lint option is one of true, false (default), name (e.g. 'cast') or array.
-    # * :other       -- Array of options passed to the compiler (e.g. '-implicit:none')
+    # * :other       -- Array of options passed to the compiler 
+    #                   (e.g. ['-implicit:none', '-encoding', 'iso-8859-1'])
     class Javac < Base
 
       OPTIONS = [:warnings, :debug, :deprecation, :source, :target, :lint, :other]