actir 1.4.3.2 → 1.4.3.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/actir/parallel_tests/cli.rb +1 -0
- data/lib/actir/version.rb +1 -1
- 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: 1c8fc1246dfcb5828a1f226487f0ae9cfbb2981c
|
|
4
|
+
data.tar.gz: 42082fe494562fb4ce522fa0aa226cf039a72583
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a921875cbfe045de02835f8f0e5e0d92a8140376ce82c24846cbe3ad26a81a63f88b11e90533ebcf4da56e08ffa422e5a4f03dd1fe461d1fa57a5ac22d517a3a
|
|
7
|
+
data.tar.gz: 227ded22a43392b8e73f0a1ed5dd0628408c800d25e398ef98f831cc2802a0becb2067bb9ff77241db6095f848973f4bbd7ab1518850da79dcded7dca690283f
|
|
@@ -198,6 +198,7 @@ module Actir
|
|
|
198
198
|
# opts.on("--non-parallel", "execute same commands but do not in parallel, needs --exec") { options[:non_parallel] = true }
|
|
199
199
|
# opts.on("--nice", "execute test commands with low priority") { options[:nice] = true }
|
|
200
200
|
opts.on("-h", "--help", "Show this.") { puts opts; exit }
|
|
201
|
+
opts.on("-v", "--version", "Show version.") { puts Actir::VERSION; exit }
|
|
201
202
|
end.parse!(argv)
|
|
202
203
|
|
|
203
204
|
if options[:count] == 0
|
data/lib/actir/version.rb
CHANGED