Module: IMW::Archives::Tar

Includes:
Base
Defined in:
lib/imw/archives/tar.rb

Instance Method Summary collapse

Methods included from Base

#append, #contents, #create, #extract, #is_archive?

Instance Method Details

#archive_settingsObject



7
8
9
10
11
12
13
14
15
# File 'lib/imw/archives/tar.rb', line 7

def archive_settings
  @archive_settings ||=  {
    :create  => "-cf",
    :append  => "-rf",
    :list    => "-tf",
    :extract => "-xf",
    :program => :tar
  }
end