Exit_Zero 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Exit_Zero.gemspec +3 -6
- data/lib/Exit_Zero/version.rb +1 -1
- metadata +4 -5
data/Exit_Zero.gemspec
CHANGED
@@ -9,13 +9,10 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ["da99"]
|
10
10
|
s.email = ["i-hate-spam-45671204@mailinator.com"]
|
11
11
|
s.homepage = "https://github.com/da99/Exit_Zero"
|
12
|
-
s.summary = %q{Make sure your last process exited with 0.}
|
12
|
+
s.summary = %q{Make sure your last child process exited with 0.}
|
13
13
|
s.description = %q{
|
14
|
-
A simple method that raises
|
15
|
-
if $?.exitstatus is not zero.
|
16
|
-
|
17
|
-
Be sure to use the "posix-spawn" gem by Ryan Tomayko
|
18
|
-
for more complex functionality.
|
14
|
+
A simple method that runs a child process and raises
|
15
|
+
Exit_Zero::Non_Zero if $?.exitstatus is not zero.
|
19
16
|
}
|
20
17
|
|
21
18
|
s.files = `git ls-files`.split("\n")
|
data/lib/Exit_Zero/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: Exit_Zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -107,9 +107,8 @@ dependencies:
|
|
107
107
|
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
|
-
description: ! "\n A simple method that raises
|
111
|
-
is not zero.\n
|
112
|
-
\ for more complex functionality.\n "
|
110
|
+
description: ! "\n A simple method that runs a child process and raises\n Exit_Zero::Non_Zero
|
111
|
+
if $?.exitstatus is not zero.\n "
|
113
112
|
email:
|
114
113
|
- i-hate-spam-45671204@mailinator.com
|
115
114
|
executables: []
|
@@ -151,5 +150,5 @@ rubyforge_project:
|
|
151
150
|
rubygems_version: 1.8.19
|
152
151
|
signing_key:
|
153
152
|
specification_version: 3
|
154
|
-
summary: Make sure your last process exited with 0.
|
153
|
+
summary: Make sure your last child process exited with 0.
|
155
154
|
test_files: []
|