Sha256: 5fc3e648ee067977b5742d32de3676bacf1d87fac5e4668128c0308f3899503e
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
# encoding: utf-8 module Backup module Compressor class Gzip < Base ## # Specify the level of compression to use. # # Values should be a single digit from 1 to 9. # Note that setting the level to either extreme may or may not # give the desired result. Be sure to check the documentation # for the compressor being used. # # The default `level` is 6. attr_accessor :level attr_deprecate :fast, :version => '3.0.24', :message => 'Use Gzip#level instead.', :action => lambda {|klass, val| klass.level = 1 if val } attr_deprecate :best, :version => '3.0.24', :message => 'Use Gzip#level instead.', :action => lambda {|klass, val| klass.level = 9 if val } ## # Creates a new instance of Backup::Compressor::Gzip def initialize(&block) load_defaults! @level ||= false instance_eval(&block) if block_given? @cmd = "#{ utility(:gzip) }#{ options }" @ext = '.gz' end private def options " -#{ @level }" if @level end end end end
Version data entries
4 entries across 4 versions & 3 rubygems