Module | ZipUtils::DryRun |
In: |
lib/more/facets/ziputils.rb
|
# File lib/more/facets/ziputils.rb, line 378 def bzip2(file, options={}) options[:dryrun] = true ZipUtils.bzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 363 def compress(format_extension, folder, file=nil, options={}) options[:dryrun] = true ZipUtils.tar_gzip(format_extension, folder, file, options) end
# File lib/more/facets/ziputils.rb, line 368 def gzip(file, options={}) options[:dryrun] = true ZipUtils.gzip(file, options) end
# File lib/more/facets/ziputils.rb, line 392 def tar(folder, file=nil, options={}) options[:dryrun] = true ZipUtils.tar(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 412 def tar_bzip2(folder, file=nil, options={}) options[:dryrun] = true ZipUtils.untar_bzip2(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 402 def tar_gzip(folder, file=nil, options={}) options[:dryrun] = true ZipUtils.tar_gzip(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 385 def unbzip2(file, options={}) options[:dryrun] = true ZipUtils.unbzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 373 def ungzip(file, options={}) options[:dryrun] = true ZipUtils.ungzip(file, options) end
# File lib/more/facets/ziputils.rb, line 397 def untar(file, options={}) options[:dryrun] = true ZipUtils.untar(file, options) end
# File lib/more/facets/ziputils.rb, line 419 def untar_bzip2(file, options={}) options[:dryrun] = true ZipUtils.untar_bzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 407 def untar_gzip(file, options={}) options[:dryrun] = true ZipUtils.untar_gzip(file, options) end
# File lib/more/facets/ziputils.rb, line 431 def unzip(file, options={}) options[:dryrun] = true ZipUtils.unzip(file, options) end