Module ZipUtils::Verbose
In: lib/more/facets/ziputils.rb

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

[Source]

# 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

[Source]

# 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

[Source]

# 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

[Source]

# File lib/more/facets/ziputils.rb, line 196
  def untar_bzip2(file, options={})
    options[:verbose] = true
    ZipUtils.untar_bzip2(file, options)
  end

[Source]

# File lib/more/facets/ziputils.rb, line 186
  def untar_gzip(file, options={})
    options[:verbose] = true
    ZipUtils.untar_gzip(file, options)
  end

[Source]

# File lib/more/facets/ziputils.rb, line 206
  def unzip(file, options={})
    options[:verbose] = true
    ZipUtils.unzip(file, options)
  end

[Source]

# File lib/more/facets/ziputils.rb, line 201
  def zip(folder, file=nil, options={})
    options[:verbose] = true
    ZipUtils.unzip(folder, file, options)
  end

[Validate]