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

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

[Source]

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

[Source]

# 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

[Source]

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

[Source]

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

[Source]

# 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

[Source]

# 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

[Source]

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

[Source]

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

[Source]

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

[Source]

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

[Source]

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

[Source]

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

[Source]

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

[Validate]