Project

guns

0.0
No commit activity in last 3 years
No release in over 3 years
Guns - It's got two pipes; got tickets to the show?
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Guns

It has two pipes; got tickets to the show?

A low overhead sh utility to replace session

Install

gem install guns -s http://gemcutter.org

Flexing

DISCLAIMER: It's not recommended to use guns in place of you shell I'm purely using IRB for demonstration

$ irb -r rubygems -r guns
>> Guns.sh "ls not-a-dir"
=> ["", "ls: not-a-dir: No such file or directory\n", 1]

The sh method returns a tuple containing stdout, stderr, and exitstatus.

Die hard

>> Guns.sh! "ls not-a-dir"
Guns::Failure: ls: not-a-dir: No such file or directory

    from ./lib/guns.rb:50:in `sh!'
    from (irb):3

sh! will raise an error on a non-zero exit status

Environment variables

>> Guns.sh "echo $FOO", "FOO" => "bar"
["bar\n", "", 0]

Further Reading

If you need more flexability and features, see Rush

TODO: Replace popen3

Thanks

Joe Ruscio for helping me debug that nasty deadlock

Ryan Tomayko for Shotgun; where I got started with this

Adam Wiggins for Rush