aai 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b586d37bb48f611b4e9340171db7924a065dc613
4
- data.tar.gz: a3aa577a3688fbbca2b45487c8ec467b6238c2d1
3
+ metadata.gz: 83e9326464ba3bcc8266d478b1689b0adef734e8
4
+ data.tar.gz: e6ee0c76abc37879ce798e67ea8be3a655838ce6
5
5
  SHA512:
6
- metadata.gz: ee7bc5696839c7c727d4062b8fe3cc9f4c25c47727d80221694f34fe3ea23764e407f1c8e1f33098190d766dc1aa06201a99a3152b83ae4ec0c974d800e0dd09
7
- data.tar.gz: 24a5566d3eeb9c5df9a4958e2d350d448c63a34d7e93f8ff9f1ab061fecbda2eff9ee41b40f69c19aa6313e63aac4d00694ab510d45dc6732eab12d6da26089b
6
+ metadata.gz: c1fa0cfe4f0111032abdba9b66193510393b0aa08cd70199ec2eabbf943ae1eed153a38c34ec9d42d9e946c2c4191a0aef7092b23769c72c32b034fdc046356e
7
+ data.tar.gz: 35040a4543e5ba6118e4988133fbb09e224a8ca493fe06f31a503fdf27b0df68bfb124cc08e55eea9a20dd9aad75f0e6659085a4861ef8088b9c996ddb250724
data/.gitignore CHANGED
@@ -12,3 +12,5 @@
12
12
  .rspec_status
13
13
  .ruby-version
14
14
  .ruby-gemset
15
+
16
+ exe/3_col_to_sim_matrix_norm.rb
@@ -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.exitstatus
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
- AbortIf.abort_unless exit_status.zero?,
47
- "Non-zero exit status " +
48
- "(#{exit_status}) " +
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
 
@@ -1,5 +1,5 @@
1
1
  module Aai
2
- VERSION = "0.5.3"
2
+ VERSION = "0.5.4"
3
3
  COPYRIGHT = "2017 Ryan Moore"
4
4
  CONTACT = "moorer@udel.edu"
5
5
  WEBSITE = "https://github.com/mooreryan/aai"
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.3
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-06-24 00:00:00.000000000 Z
11
+ date: 2017-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler