Class: Backup::Compressor::Base

Inherits:
Object
  • Object
show all
Includes:
Backup::CLI::Helpers, Backup::Configuration::Helpers
Defined in:
lib/backup/compressor/base.rb

Direct Known Subclasses

Bzip2, Custom, Gzip, Lzma, Pbzip2

Constant Summary

Constants included from Backup::CLI::Helpers

Backup::CLI::Helpers::UTILITY

Instance Method Summary collapse

Methods included from Backup::Configuration::Helpers

included

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Backup::Configuration::Helpers

Instance Method Details

#compress_with {|@cmd, @ext| ... } ⇒ Object

Yields to the block the compressor command and filename extension.

Yields:

  • (@cmd, @ext)


11
12
13
14
# File 'lib/backup/compressor/base.rb', line 11

def compress_with
  log!
  yield @cmd, @ext
end