aai 0.5.3 → 0.5.4
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/.gitignore +2 -0
- data/lib/aai/core_extensions.rb +6 -4
- data/lib/aai/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83e9326464ba3bcc8266d478b1689b0adef734e8
|
|
4
|
+
data.tar.gz: e6ee0c76abc37879ce798e67ea8be3a655838ce6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1fa0cfe4f0111032abdba9b66193510393b0aa08cd70199ec2eabbf943ae1eed153a38c34ec9d42d9e946c2c4191a0aef7092b23769c72c32b034fdc046356e
|
|
7
|
+
data.tar.gz: 35040a4543e5ba6118e4988133fbb09e224a8ca493fe06f31a503fdf27b0df68bfb124cc08e55eea9a20dd9aad75f0e6659085a4861ef8088b9c996ddb250724
|
data/.gitignore
CHANGED
data/lib/aai/core_extensions.rb
CHANGED
|
@@ -37,15 +37,17 @@ module Aai
|
|
|
37
37
|
puts stdout unless stdout.empty?
|
|
38
38
|
$stderr.puts stderr unless stderr.empty?
|
|
39
39
|
|
|
40
|
-
exit_status
|
|
40
|
+
exit_status
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
def run_it! *a, &b
|
|
44
44
|
exit_status = self.run_it *a, &b
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
# Sometimes, exited? is not true and there will be no exit
|
|
47
|
+
# status. Success should catch all failures.
|
|
48
|
+
AbortIf.abort_unless exit_status.success?,
|
|
49
|
+
"Command failed with status " +
|
|
50
|
+
"'#{exit_status.to_s}' " +
|
|
49
51
|
"when running '#{a.inspect}', " +
|
|
50
52
|
"'#{b.inspect}'"
|
|
51
53
|
|
data/lib/aai/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Moore
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|