Module: EY::Backup::GZipper

Extended by:
GZipper, Spawner
Included in:
GZipper
Defined in:
lib/ey_backup/processors/gzipper.rb

Constant Summary collapse

CHUNK_SIZE =
1024 * 64

Instance Method Summary collapse

Methods included from Spawner

ioify, run, runs?, spawn

Instance Method Details

#extensionObject



17
18
19
# File 'lib/ey_backup/processors/gzipper.rb', line 17

def extension
  ".gz"
end

#gunzipObject



13
14
15
# File 'lib/ey_backup/processors/gzipper.rb', line 13

def gunzip
  "gunzip -c"
end

#gzipObject



9
10
11
# File 'lib/ey_backup/processors/gzipper.rb', line 9

def gzip
  "gzip -c"
end