Sha256: 741ce6103a99912149a572c7c740613f3aa0b53e45375b034841e7d88e41cee2

Contents?: true

Size: 1.5 KB

Versions: 2

Compression:

Stored size: 1.5 KB

Contents

# frontkick [![Build Status](https://secure.travis-ci.org/sonots/frontkick.png?branch=master)](http://travis-ci.org/sonots/frontkick) [![Dependency Status](https://gemnasium.com/sonots/frontkick.png)](https://gemnasium.com/sonots/frontkick)

testing ruby: 1.9.2, 1.9.3, 2.0.0;

Frontkick is a gem to execute a command and obtain status code, stdout, stderr simply, wheres, `system` does not provide it. 

## USAGE

    gem install frontkick

### Basic Usage

    result = Frontkick::Command.exec("echo *")
    puts result.successful? #=> true if exit_code is 0
    puts result.stdout #=> stdout output of the command
    puts result.stderr #=> stderr output of the command
    puts result.exit_code #=> exit_code of the command
    puts result.duration #=> the time used to execute the command

### Escape Command

    result = Frontkick::Command.exec(["echo", "*"]) #=> echo the asterisk character

### Timeout Option

    Frontkick::Command.exec("sleep 2 && ls /hoge", :timeout => 1)

### Exclusive Option

Prohibit another process to run a command concurrently

    Frontkick::Command.exec("sleep 2 && ls /hoge", :exclusive => "/tmp/frontkick.lock") # raises Fontkick::Locked if locked

## Contributing

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

## Copyright

Copyright (c) 2013 Naotoshi SEO. See [LICENSE](LICENSE) for details.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
frontkick-0.2.1 README.md
frontkick-0.2.0 README.md