Sha256: 321eb0dabd4e0b9be4b2ea5b0f5ee54d7c7a6f331a9c9aa4cfcbafb477d2e177

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

# Dearchiver

A simple Ruby Gem to decompress and check the CRC of compressed files.

## Installation

Add this line to your application's Gemfile:

    gem 'dearchiver'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install dearchiver

## Usage

Dearchiver will use the command line of your operating system to perform the desired operations in the
compressed files. This means that you **need** to have utilities installed (say *unzip*, *unrar*, *7zip* and *tar*).

Usage is very simple.

Just for now the gem will work only of the following type of files:

    .zip
    .rar
    .tar.gz
    .7z

**TESTED ON Ubuntu 10.04**: No idea how it is going to behave in other OS.

### Checking CRC

    da = Dearchiver.new(:filename => "foo.zip")
    da.crc_ok?

If the filename doesn't have any extension, you can use:

    da = Dearchiver.new(:filename => "foo", :archive_type => ".zip")
    da.crc_ok?

### Extracting files

    da = Dearchiver.new(:filename => "foo.zip")
    da.extract_to("/tmp")
    puts da.list_of_files

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dearchiver-0.0.1 README.md