aws-must-templates 0.1.4 → 0.1.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/tasks/suite.rake +3 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f286b4d8c646035c34d383b9119fd1d62162c530
4
- data.tar.gz: d25f3513c6c5d4133d1fbc3267a72a8331592333
3
+ metadata.gz: 18ca6417f6046aec7b380d88aed546334346be5c
4
+ data.tar.gz: a5fffb97da19d96e9aa06682df9bac60019a3299
5
5
  SHA512:
6
- metadata.gz: 08dbaf7a3237da8934358c56ecda3a881e4bb4b3df4ef8963c01b1a2b8de498e1e3121cd4c6ee09e15996ed383ae7f35e565d45a528620469fb6192888cb43c8
7
- data.tar.gz: ccf2a892e3499d875b51c71acdda1c679c28485d72b7c08d2b489d374bd0ee9a13c832924354504f20db5800238906ad769ac1314d52f085eacce963d9eaf476
6
+ metadata.gz: 23cce685cf1cfe6cfaded62a8bb574d93ba2ccee1157a0e31b0082d0d57ca7022a1e02a82c9123d073caa33202a61182a80dabca252a3611f0ad841ba0734b56
7
+ data.tar.gz: f8053520fd6c4724b76e52c79c5c13c9bb60faf4b4041af003dcf1b9bf4956e9a8a61f2626dbbf25190b9eb315292ee0b642c907b8257eacd915b9ea9d0d2374
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # aws-must-templates - cloudformation templates for aws-must - $Release:0.1.4$
1
+ # aws-must-templates - cloudformation templates for aws-must - $Release:0.1.5$
2
2
 
3
3
  Set of [extensible](#OVERRIDE)
4
4
  [templates](https://rawgit.com/jarjuk/aws-must-templates/master/generated-docs/aws-must-templates.html)
data/lib/tasks/suite.rake CHANGED
@@ -60,7 +60,7 @@ namespace :suite do
60
60
  all_suites.each do |t|
61
61
  begin
62
62
  Rake::Task[t].invoke( args.gen_opts )
63
- failed_suites << t unless $?.success?
63
+ failed_suites << t unless ( $?.nil? || $?.success? )
64
64
  # # Run in isolation && continue no matter what
65
65
  # sh "rake #{t}; true"
66
66
  rescue => e
@@ -130,7 +130,7 @@ namespace :suite do
130
130
 
131
131
  task :report_dir do
132
132
  report_dir = suite_test_report_dirpath()
133
- sh "mkdir -p #{t}" unless File.exist?(report_dir)
133
+ sh "mkdir -p #{report_dir}" unless File.exist?(report_dir)
134
134
  end
135
135
 
136
136
  # **********
@@ -187,7 +187,7 @@ namespace :suite do
187
187
  else
188
188
  Rake::Task[task].invoke( args )
189
189
  end
190
- failed_tasks << task unless $?.success?
190
+ failed_tasks << task unless ( $?.nil? || $?.success? )
191
191
  # # Run in isolation && continue no matter what
192
192
  # sh "rake #{t}; true"
193
193
  rescue => e
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-must-templates
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - jarjuk