Verbose version of ZipUtils.

This is the same as passing :verbose flag to ZipUtils methods.

Methods
bzip bzip2 compress gzip tar tar_bzip2 tar_gzip unbzip unbzip2 ungzip untar untar_bzip2 untar_gzip unzip zip
Public Instance methods
bzip(file, options={})

Alias for bzip2

bzip2(file, options={})
This method is also aliased as bzip
# File lib/more/facets/ziputils.rb, line 219
  def bzip2(file, options={})
    options[:verbose] = true
    ZipUtils.bzip2(file, options)
  end
compress(format_extension, folder, file=nil, options={})
# 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
gzip(file, options={})
# File lib/more/facets/ziputils.rb, line 209
  def gzip(file, options={})
    options[:verbose] = true
    ZipUtils.gzip(file, options)
  end
tar(folder, file=nil, options={})
# File lib/more/facets/ziputils.rb, line 233
  def tar(folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.tar(folder, file, options)
  end
tar_bzip2(folder, file=nil, options={})
# 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
tar_gzip(folder, file=nil, options={})
# 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
unbzip(file, options={})

Alias for unbzip2

unbzip2(file, options={})
This method is also aliased as unbzip
# File lib/more/facets/ziputils.rb, line 226
  def unbzip2(file, options={})
    options[:verbose] = true
    ZipUtils.unbzip2(file, options)
  end
ungzip(file, options={})
# File lib/more/facets/ziputils.rb, line 214
  def ungzip(file, options={})
    options[:verbose] = true
    ZipUtils.ungzip(file, options)
  end
untar(file, options={})
# File lib/more/facets/ziputils.rb, line 238
  def untar(file, options={})
    options[:verbose] = true
    ZipUtils.untar(file, options)
  end
untar_bzip2(file, options={})
# File lib/more/facets/ziputils.rb, line 258
  def untar_bzip2(file, options={})
    options[:verbose] = true
    ZipUtils.untar_bzip2(file, options)
  end
untar_gzip(file, options={})
# File lib/more/facets/ziputils.rb, line 248
  def untar_gzip(file, options={})
    options[:verbose] = true
    ZipUtils.untar_gzip(file, options)
  end
unzip(file, options={})
# File lib/more/facets/ziputils.rb, line 268
  def unzip(file, options={})
    options[:verbose] = true
    ZipUtils.unzip(file, options)
  end
zip(folder, file=nil, options={})
# File lib/more/facets/ziputils.rb, line 263
  def zip(folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.unzip(folder, file, options)
  end