Sha256: dd56faf94f82ef29e4c3cc6e73b4c7a684bb30b6e246d2a8e9ca2c7368069035

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Compressor
      class Pbzip2 < Base
        class << self

          ##
          # Tells Backup::Compressor::Pbzip2 to compress
          # better (-9) which is bzip2 default anyway
          attr_accessor :best

          ##
          # Tells Backup::Compressor::Pbzip2 to compress
          # faster (-1) (but not significantly faster)
          attr_accessor :fast

          ##                                                                                                                                                                         
          # Tells Backup::Compressor::Pbzip2 how many processors                                                                                                                     
          # use, by default autodetect is used                                                                                                                                       
          attr_writer :processors

        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
backup-3.0.20 lib/backup/configuration/compressor/pbzip2.rb