0.03
There's a lot of open issues
A long-lived project that still receives updates
AwesomeSpawn is a module that provides some useful features over Ruby's Kernel.spawn.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

AwesomeSpawn

Gem Version CI Code Climate Coverage Status

AwesomeSpawn is a module that provides some useful features over Ruby's Kernel.spawn.

Some additional features include...

  • Parameter passing as a Hash or associative Array sanitizing them to prevent command line injection.
  • Ability to pass the contents of stdin as a String.
  • Results returned as an object giving access to the output stream, error stream, and exit status.
  • Optionally raising an exception when exit status is not 0.

Usage

See the YARD documentation

Installation

Add this line to your application's Gemfile:

gem 'awesome_spawn'

And then execute:

$ bundle

Or install it yourself as:

$ gem install awesome_spawn

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