ferrets_on_fire 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ferrets_on_fire/dsl/shell_dsl.rb +1 -1
- data/lib/ferrets_on_fire/version.rb +1 -1
- data/lib/ferrets_on_fire.rb +2 -2
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 877d1313584370a16349880b5514bb84a171f543
|
|
4
|
+
data.tar.gz: f9e0853dc4cd72a9fa96174f6462c08b695abf6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99627b7c01c9eed0e0b84627329d4b0f3e41b2ef1d506bddc891a64b61a78829b0a9e1abfc7fb3ed4060adf8e85c3d0a2a8a083ea3c38a8729efbb8744a4640f
|
|
7
|
+
data.tar.gz: cf863e95a8b1cf3a3af5008f952fc64224dfa466824316bbb86b028c86804da761754484523c055c3b9ac37e826a9d9c5c0c8480d3138c8198a98b1064b50770
|
|
@@ -32,7 +32,7 @@ module FerretsOnFire::DSL::ShellDSL
|
|
|
32
32
|
|
|
33
33
|
# Error handling
|
|
34
34
|
if status.nonzero? && return_exit_code == false
|
|
35
|
-
crash "Shell command exited with status code #{status}!", output, command: cmd,
|
|
35
|
+
crash "Shell command exited with status code #{status}!", output, command: cmd, exit: exit_on_failure
|
|
36
36
|
end
|
|
37
37
|
|
|
38
38
|
return_exit_code ? status : output
|
data/lib/ferrets_on_fire.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ferrets_on_fire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- phortx
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: micon
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0.25'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rspec
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 3.5.0
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 3.5.0
|
|
83
97
|
description: Supercharge your CLI tools. This gem helps you to write powerful CLI
|
|
84
98
|
tools without caring about the clutter
|
|
85
99
|
email:
|