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/03/07 01:58:04 UTC

svn commit: r751151 - /buildr/trunk/lib/buildr/packaging/ziptask.rb

Author: boisvert
Date: Sat Mar  7 00:58:04 2009
New Revision: 751151

URL: http://svn.apache.org/viewvc?rev=751151&view=rev
Log:
BUILDR-253: ZipTask now uses Zlib::DEFAULT_COMPRESSION instead of NO_COMPRESSION

Modified:
    buildr/trunk/lib/buildr/packaging/ziptask.rb

Modified: buildr/trunk/lib/buildr/packaging/ziptask.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/packaging/ziptask.rb?rev=751151&r1=751150&r2=751151&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/packaging/ziptask.rb (original)
+++ buildr/trunk/lib/buildr/packaging/ziptask.rb Sat Mar  7 00:58:04 2009
@@ -35,7 +35,7 @@
     attr_accessor :compression_level
 
     def initialize(*args) #:nodoc:
-      self.compression_level = Zlib::NO_COMPRESSION
+      self.compression_level = Zlib::DEFAULT_COMPRESSION
       super
     end