Class: Tarchiver::Compressor

Inherits:
Object
  • Object
show all
Defined in:
lib/tarchiver/compressor.rb

Direct Known Subclasses

Gzipper

Class Method Summary collapse

Class Method Details

.compress(archive_path, tar_path, options) ⇒ Object

Raises:

  • (NotImplementedError)


4
5
6
# File 'lib/tarchiver/compressor.rb', line 4

def self.compress(archive_path, tar_path, options)
  raise NotImplementedError
end

.open(path) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/tarchiver/compressor.rb', line 8

def self.open(path)
  raise NotImplementedError
end