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 2010/03/02 07:13:12 UTC

svn commit: r917890 - in /buildr/trunk: CHANGELOG lib/buildr/java/bdd.rb

Author: boisvert
Date: Tue Mar  2 06:13:12 2010
New Revision: 917890

URL: http://svn.apache.org/viewvc?rev=917890&view=rev
Log:
BUILDR-341 jruby -S extract is no longer supported by jruby
(Antoine Toulme)


Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/java/bdd.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=917890&r1=917889&r2=917890&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Tue Mar  2 06:13:12 2010
@@ -47,6 +47,8 @@
           entries (Stefan Wasilewski)
 * Fixed:  BUILDR-336 Java::Commands.java Prints Command Without --trace
           (Antoine Toulme)
+* Fixed:  BUILDR-341 jruby -S extract is no longer supported by jruby
+          (Antoine Toulme)
 * Fixed:  BUILDR-344 Buildr::TestFramework::TestResult::YamlFormatter uses 
           deprecated form of example_pending (Rhett Sutphin)
 * Fixed:  BUILDR-345 Improve project documentation (Peter Schröder)

Modified: buildr/trunk/lib/buildr/java/bdd.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/bdd.rb?rev=917890&r1=917889&r2=917890&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/bdd.rb (original)
+++ buildr/trunk/lib/buildr/java/bdd.rb Tue Mar  2 06:13:12 2010
@@ -134,14 +134,6 @@
         say msg
         say ''
         say "You need to install JRuby version #{jruby_artifact.version} using your system package manager."
-        say 'Or you can just execute the following command: '
-        say ''
-        say "   java -jar #{jruby_artifact} -S extract '#{jruby_home}'"
-        say ''
-        if agree('Do you want me to execute it for you? [y/N]', false)
-          jruby_artifact.invoke
-          Java::Commands.java('-jar', jruby_artifact.to_s, '-S', 'extract', jruby_home)
-        end
 
         fail msg unless jruby_installed?
       end