You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/10/10 00:40:37 UTC

svn commit: r1530817 - /buildr/trunk/lib/buildr/java/bdd.rb

Author: donaldp
Date: Wed Oct  9 22:40:37 2013
New Revision: 1530817

URL: http://svn.apache.org/r1530817
Log:
Replace usage of Highline api with puts

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

Modified: buildr/trunk/lib/buildr/java/bdd.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/bdd.rb?rev=1530817&r1=1530816&r2=1530817&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/bdd.rb (original)
+++ buildr/trunk/lib/buildr/java/bdd.rb Wed Oct  9 22:40:37 2013
@@ -128,9 +128,9 @@ module Buildr #:nodoc:
       unless jruby_installed?
         jruby_artifact = Buildr.artifact(TestFramework::JRubyBased.jruby_artifact)
         msg = "JRUBY_HOME is not correctly set or points to an invalid JRuby installation: #{jruby_home}"
-        say msg
-        say ''
-        say "You need to install JRuby version #{jruby_artifact.version} using your system package manager."
+        puts msg
+        puts ''
+        puts "You need to install JRuby version #{jruby_artifact.version} using your system package manager."
 
         fail msg unless jruby_installed?
       end