shindo 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +4 -0
- data/lib/shindo.rb +1 -1
- data/shindo.gemspec +3 -3
- metadata +4 -3
data/README.rdoc
CHANGED
@@ -63,6 +63,10 @@ Or combine to run everything with a foo tag, but no bar tag
|
|
63
63
|
|
64
64
|
shindo some_test_directory +foo -bar
|
65
65
|
|
66
|
+
If you are running in a non-interactive mode, or one where speed matters (i.e. continuous integration), you can run shindo with (n)o (t)race and much quieter output. It takes all the same arguments, but uses the shindont bin file.
|
67
|
+
|
68
|
+
shindont something_tests.rb
|
69
|
+
|
66
70
|
== Command line tools
|
67
71
|
|
68
72
|
When tests fail you'll get lots of options to help you debug the problem, just enter '?' at the prompt to see your options.
|
data/lib/shindo.rb
CHANGED
data/shindo.gemspec
CHANGED
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
14
14
|
## the sub! line in the Rakefile
|
15
15
|
s.name = 'shindo'
|
16
|
-
s.version = '0.1.
|
17
|
-
s.date = '2010-06-
|
16
|
+
s.version = '0.1.6'
|
17
|
+
s.date = '2010-06-16'
|
18
18
|
s.rubyforge_project = 'shindo'
|
19
19
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |s|
|
|
38
38
|
# s.extensions = %w[ext/extconf.rb]
|
39
39
|
|
40
40
|
## If your gem includes any executables, list them here.
|
41
|
-
s.executables = [
|
41
|
+
s.executables = ['shindo', 'shindont']
|
42
42
|
s.default_executable = 'shindo'
|
43
43
|
|
44
44
|
## Specify any RDoc options here. You'll want to add your README and
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 6
|
9
|
+
version: 0.1.6
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- geemus (Wesley Beary)
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-06-
|
17
|
+
date: 2010-06-16 00:00:00 -07:00
|
18
18
|
default_executable: shindo
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -49,6 +49,7 @@ description: Work with your tests, not against them.
|
|
49
49
|
email: geemus@gmail.com
|
50
50
|
executables:
|
51
51
|
- shindo
|
52
|
+
- shindont
|
52
53
|
extensions: []
|
53
54
|
|
54
55
|
extra_rdoc_files:
|