Project

pipe-run

0.0
No commit activity in last 3 years
No release in over 3 years
Executes shell command and returns its outputs in single call. Both synchronous and asynchronous (with EventMachine) executing is supported.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
>= 1.5.2
 Project Readme

Pipe Run

Pipe Run runs command and returns its standard output in one call:

require "pipe-run"

stdout = Pipe.run("date")       # blocking
puts stdout         # will print out for example 'Thu Feb 17 17:22:18 CET 2011'

stdout, errout = Pipe.run2("date")       # blocking
puts stdout         # will print out for example 'Thu Feb 17 17:22:18 CET 2011'

Asynchronous Use

In case, eventmachine is available, non-blocking run of the command is possible using #run_nonblock or #run with block given, defined in em-pipe-run file. So for example:

EM::run do
    Pipe.run("date") do |stdout|    # non-blocking
        puts stdout     # will print out for example 'Thu Feb 17 17:22:18 CET 2011'
    end
    
    Pipe.run2("date") do |stdout, errout|    # non-blocking
        puts stdout     # will print out for example 'Thu Feb 17 17:22:18 CET 2011'
    end
end

Contributing

  1. Fork it.
  2. Create a branch (git checkout -b 20101220-my-change).
  3. Commit your changes (git commit -am "Added something").
  4. Push to the branch (git push origin 20101220-my-change).
  5. Create an Issue with a link to your branch.
  6. Enjoy a refreshing Diet Coke and wait.

Copyright

Copyright © 2010 – 2011 Martin Kozák. See LICENSE.txt for further details.