guns 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +2 -0
  2. data/guns.gemspec +1 -1
  3. data/lib/guns.rb +1 -0
  4. metadata +1 -1
data/README.md CHANGED
@@ -40,5 +40,7 @@ If you need more flexability and features, see [Rush](http://github.com/adamwigg
40
40
  TODO: Replace popen3
41
41
 
42
42
  ## Thanks
43
+
43
44
  [Joe Ruscio](http://github.com/josephruscio) for helping me debug that nasty deadlock
45
+
44
46
  [Ryan Tomayko](http://www.tomayko.com) for Shotgun; where I got started with this
data/guns.gemspec CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = 'guns'
6
- s.version = '0.1.0'
6
+ s.version = '0.1.1'
7
7
  s.date = '2009-10-30'
8
8
 
9
9
  s.description = "Guns - It's got two pipes; got tickets to the show?"
data/lib/guns.rb CHANGED
@@ -50,6 +50,7 @@ module Guns
50
50
  def sh!(*args)
51
51
  out, err, code = sh(*args)
52
52
  raise Failure, err if code != 0
53
+ [out, err, code]
53
54
  end
54
55
  module_function :sh!
55
56
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Mizerany