mesa_test 0.0.12 → 0.0.13
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/mesa_test.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c06f0e253f2ec4ad279aa734ef85a8427b71eee
|
|
4
|
+
data.tar.gz: 36aff1d20856a1945f3224ebf69170f670ab86c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66722dfff82bde4c8e5b39ae71ee235f7abffb01b8bf0d1aff3fc4bd90db40407cc21ef10c18bc7785927b178aa17d451671d8ada974f055581e0856ed101da1
|
|
7
|
+
data.tar.gz: c77368f2ce742fa8eb81e51d5fc59476c5a26ff8e8ef5fccb4da6aa37d0e2dd274e1b494036d9636885da3b7b744d5114cfaf2a386ec2c8daf186d517771c9db
|
data/lib/mesa_test.rb
CHANGED
|
@@ -309,13 +309,13 @@ e-mail and password will be stored in plain text.'
|
|
|
309
309
|
end
|
|
310
310
|
end
|
|
311
311
|
puts ''
|
|
312
|
-
if submitted_cases.empty?
|
|
312
|
+
if not submitted_cases.empty?
|
|
313
313
|
shell.say 'Submitted the following cases:', :green
|
|
314
314
|
puts submitted_cases.join("\n")
|
|
315
315
|
else
|
|
316
316
|
shell.say 'Did not successfully submit any cases.', :red
|
|
317
317
|
end
|
|
318
|
-
if unsubmitted_cases.empty?
|
|
318
|
+
if not unsubmitted_cases.empty?
|
|
319
319
|
puts "\n\n\n"
|
|
320
320
|
shell.say 'Failed to submit the following cases:', :red
|
|
321
321
|
puts unsubmitted_cases.join("\n")
|