dohtest 0.1.25 → 0.1.26
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/bin/dohtest +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1dc0d7a060ca99f77aabbef3a6645158ff6fec34
|
|
4
|
+
data.tar.gz: c02538b1f17eacd94dae243d6578f0b1c03da526
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cb9fede3798ca92734113ef176dc8e6307baf256c271dd0cd6286a5350fdd9ab4999218ee52fd2f20cdac353688334d718b276dd751f2aaa14423ffc94e96ee
|
|
7
|
+
data.tar.gz: 11c02cee2a502f5962c2444d0ffb902e3aa5ccd7d9c1dd7f4b02598f19ddb2c5e4904ee12e280fbf49d20ff892f98f184e9c1d1d3cd2c7c492b020fcdcc3800c
|
data/bin/dohtest
CHANGED
|
@@ -8,9 +8,12 @@ opts = Doh::Options.new({
|
|
|
8
8
|
'seed' => [nil, "-s", "--seed <number>", "use this as the seed to srand"],
|
|
9
9
|
'no_color' => [nil, '-c', '--no_color', "use this if you don't want ANSI color codes"],
|
|
10
10
|
'verbose' => [nil, '-v', '--verbose', "use this to generate more output"],
|
|
11
|
-
'quiet' => [nil, '-q', '--quiet', "use this to generate less output"],
|
|
11
|
+
'quiet' => [nil, '-q', '--quiet', "use this to generate less output, disables ruby -v mode (which is default) "],
|
|
12
12
|
}, true, 'Files or directories may be specified to run tests on. Directories will be treated recursively. Defaults to the current directory.')
|
|
13
13
|
|
|
14
|
+
#generates ruby warnings -- equivalent to ruby -v
|
|
15
|
+
$VERBOSE = true unless opts.quiet
|
|
16
|
+
|
|
14
17
|
paths = (if opts.varargs.empty? then ['.'] else opts.varargs end)
|
|
15
18
|
|
|
16
19
|
DohTest.configure(paths[0])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dohtest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Makani Mason
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-09-
|
|
12
|
+
date: 2013-09-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: dohroot
|
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
85
85
|
version: '0'
|
|
86
86
|
requirements: []
|
|
87
87
|
rubyforge_project:
|
|
88
|
-
rubygems_version: 2.0.
|
|
88
|
+
rubygems_version: 2.0.2
|
|
89
89
|
signing_key:
|
|
90
90
|
specification_version: 4
|
|
91
91
|
summary: minimalist unit test framework
|