Verbose version of ZipUtils.

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

Methods
compress tar_bzip2 tar_gzip untar_bzip2 untar_gzip unzip zip
Public Instance methods
compress(format_extension, folder, file=nil, options={})
# File lib/more/facets/ziputils.rb, line 176
  def compress(format_extension, folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.tar_gzip(format_extension, folder, file, options)
  end
tar_bzip2(folder, file=nil, options={})
# File lib/more/facets/ziputils.rb, line 191
  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 181
  def tar_gzip(folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.tar_gzip(folder, file, options)
  end
untar_bzip2(file, options={})
# File lib/more/facets/ziputils.rb, line 196
  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 186
  def untar_gzip(file, options={})
    options[:verbose] = true
    ZipUtils.untar_gzip(file, options)
  end
unzip(file, options={})
# File lib/more/facets/ziputils.rb, line 206
  def unzip(file, options={})
    options[:verbose] = true
    ZipUtils.unzip(file, options)
  end
zip(folder, file=nil, options={})
# File lib/more/facets/ziputils.rb, line 201
  def zip(folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.unzip(folder, file, options)
  end