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 2012/05/02 03:40:56 UTC

svn commit: r1332894 - in /buildr/trunk: CHANGELOG rakelib/doc.rake

Author: donaldp
Date: Wed May  2 01:40:56 2012
New Revision: 1332894

URL: http://svn.apache.org/viewvc?rev=1332894&view=rev
Log:
BUILDR-639 Stop requiring pygmentize to run "rake -T" 

Submitted By: Russell Teabeault

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/rakelib/doc.rake

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1332894&r1=1332893&r2=1332894&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Wed May  2 01:40:56 2012
@@ -1,4 +1,5 @@
 1.4.7 (Pending)
+* Change: BUILDR-639 Stop requiring pygmentize to run "rake -T" (Russell Teabeault)
 * Added:  Enhance the IDEA extension to support the addition of several explicit facets such as
           ejb, jruby, jpa, web and gwt.
 * Added:  Add several utility methods to IDEA extension for defining artifacts and configurations.

Modified: buildr/trunk/rakelib/doc.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/doc.rake?rev=1332894&r1=1332893&r2=1332894&view=diff
==============================================================================
--- buildr/trunk/rakelib/doc.rake (original)
+++ buildr/trunk/rakelib/doc.rake Wed May  2 01:40:56 2012
@@ -66,7 +66,7 @@ if !RUBY_PLATFORM[/java/]
     puts "Buildr uses the jekyll gem to generate the Web site. You can install it by running bundler"
   end
 
-  if `pygmentize -V`.empty?
+  if system("pygmentize -V")
     puts "Buildr uses the Pygments python library. You can install it by running 'sudo easy_install Pygments'"
   end