simp-beaker-helpers 1.5.2 → 1.5.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/simp/beaker_helpers.rb +1 -1
- data/lib/simp/rake/beaker.rb +11 -9
- 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: c7e6ccefb3c2c3e10117140a310fe385a5263e7d
|
|
4
|
+
data.tar.gz: dc48f4b07005bcc2278564e3f5b0e8ecff8f1230
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01781e927687b40585c3ddca1a217195cf7bb3c496143c5c98efafdf3f49e6eb763ac6aa1b9e19dbb9f8702439d863257480bd8d238ec95b9630fb1669178e33
|
|
7
|
+
data.tar.gz: a96fc9d648ec646148fc04f166546d151764c3f786d73b8c2e48ab7a1a5dea570cdfd098a5b6991389b243dcdbfc99f4a737d372c543ce2bce1ccb67b22a3065
|
data/lib/simp/beaker_helpers.rb
CHANGED
data/lib/simp/rake/beaker.rb
CHANGED
|
@@ -116,15 +116,17 @@ module Simp::Rake
|
|
|
116
116
|
|
|
117
117
|
raise("Error: Suites Directory at '#{suite_basedir}'!") unless File.directory?(suite_basedir)
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
File.
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
119
|
+
if suite
|
|
120
|
+
unless File.directory?(File.join(suite_basedir, suite))
|
|
121
|
+
STDERR.puts("Error: Could not find suite '#{suite}'")
|
|
122
|
+
STDERR.puts("Available Suites:")
|
|
123
|
+
STDERR.puts(' * ' + Dir.glob(
|
|
124
|
+
File.join(suite_basedir, '*')).sort.map{ |x|
|
|
125
|
+
File.basename(x)
|
|
126
|
+
}.join("\n * ")
|
|
127
|
+
)
|
|
128
|
+
exit(1)
|
|
129
|
+
end
|
|
128
130
|
end
|
|
129
131
|
|
|
130
132
|
suite_config = {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simp-beaker-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Tessmer
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-07-
|
|
12
|
+
date: 2016-07-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: beaker
|