Module | ZipUtils::Verbose |
In: |
lib/more/facets/ziputils.rb
|
# File lib/more/facets/ziputils.rb, line 219 def bzip2(file, options={}) options[:verbose] = true ZipUtils.bzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 204 def compress(format_extension, folder, file=nil, options={}) options[:verbose] = true ZipUtils.tar_gzip(format_extension, folder, file, options) end
# File lib/more/facets/ziputils.rb, line 209 def gzip(file, options={}) options[:verbose] = true ZipUtils.gzip(file, options) end
# File lib/more/facets/ziputils.rb, line 233 def tar(folder, file=nil, options={}) options[:verbose] = true ZipUtils.tar(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 253 def tar_bzip2(folder, file=nil, options={}) options[:verbose] = true ZipUtils.untar_bzip2(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 243 def tar_gzip(folder, file=nil, options={}) options[:verbose] = true ZipUtils.tar_gzip(folder, file, options) end
# File lib/more/facets/ziputils.rb, line 226 def unbzip2(file, options={}) options[:verbose] = true ZipUtils.unbzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 214 def ungzip(file, options={}) options[:verbose] = true ZipUtils.ungzip(file, options) end
# File lib/more/facets/ziputils.rb, line 238 def untar(file, options={}) options[:verbose] = true ZipUtils.untar(file, options) end
# File lib/more/facets/ziputils.rb, line 258 def untar_bzip2(file, options={}) options[:verbose] = true ZipUtils.untar_bzip2(file, options) end
# File lib/more/facets/ziputils.rb, line 248 def untar_gzip(file, options={}) options[:verbose] = true ZipUtils.untar_gzip(file, options) end
# File lib/more/facets/ziputils.rb, line 268 def unzip(file, options={}) options[:verbose] = true ZipUtils.unzip(file, options) end