tork 19.8.1 → 19.8.2
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/VERSION.markdown +11 -0
- data/bin/tork +1 -1
- data/bin/tork-driver +1 -1
- data/bin/tork-engine +1 -1
- data/bin/tork-herald +1 -1
- data/bin/tork-master +1 -1
- data/bin/tork-notify +1 -1
- data/bin/tork-runner +1 -1
- data/lib/tork/config/spec/worker.rb +13 -2
- data/lib/tork/version.rb +1 -1
- data/man/man0/VERSION.html +45 -40
- data/man/man0/VERSION.markdown +11 -0
- data/man/man1/tork-driver.1 +1 -1
- data/man/man1/tork-driver.1.html +1 -1
- data/man/man1/tork-engine.1 +1 -1
- data/man/man1/tork-engine.1.html +1 -1
- data/man/man1/tork-herald.1 +1 -1
- data/man/man1/tork-herald.1.html +1 -1
- data/man/man1/tork-master.1 +1 -1
- data/man/man1/tork-master.1.html +1 -1
- data/man/man1/tork-notify.1 +1 -1
- data/man/man1/tork-notify.1.html +1 -1
- data/man/man1/tork-runner.1 +1 -1
- data/man/man1/tork-runner.1.html +1 -1
- data/man/man1/tork.1 +1 -1
- data/man/man1/tork.1.html +1 -1
- 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: d43b1c853bce71a2d45e8c10285f62086b87d695
|
4
|
+
data.tar.gz: 121972db46e71b3ae1638e1db88aa7d97caeaf36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ae7a869ff7da979724748a11376e3eb20e67bca33708845f9c6205cfe72c705306866f79b8232f00011d8f56a9f28335dc7acefa6b4570cea48d9b41353f51f
|
7
|
+
data.tar.gz: a1cde8d17f54545c9d7fd329fc9f2a0ec3a4b9f0644fadcee29b2f7396af9a0975452777e233d9e340a0725fb7fe8252a76215ff47eaeb006bf7c10ee9775a37
|
data/VERSION.markdown
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## Version 19.8.2 (2014-07-01)
|
2
|
+
|
3
|
+
This release adds support for RSpec 3+ in the `spec` configuration helper.
|
4
|
+
|
5
|
+
### Patch:
|
6
|
+
|
7
|
+
* GH-58: RSpec 3.0 removed `--line_number` command-line option.
|
8
|
+
|
9
|
+
Thanks to Jonathan Cairns for reporting this issue in GH-58:
|
10
|
+
https://github.com/sunaku/tork/issues/58
|
11
|
+
|
1
12
|
## Version 19.8.1 (2014-06-28)
|
2
13
|
|
3
14
|
### Patch:
|
data/bin/tork
CHANGED
data/bin/tork-driver
CHANGED
data/bin/tork-engine
CHANGED
data/bin/tork-herald
CHANGED
data/bin/tork-master
CHANGED
data/bin/tork-notify
CHANGED
data/bin/tork-runner
CHANGED
@@ -1,5 +1,16 @@
|
|
1
|
+
rspec_version = begin
|
2
|
+
require 'rspec/core/version'
|
3
|
+
RSpec::Core::Version::STRING
|
4
|
+
rescue LoadError, NameError
|
5
|
+
# ignore
|
6
|
+
end
|
7
|
+
|
1
8
|
if $tork_test_file.start_with? 'spec/' and $tork_line_numbers.any?
|
2
|
-
|
3
|
-
ARGV.push
|
9
|
+
if rspec_version and rspec_version >= '3.0'
|
10
|
+
ARGV.push [$tork_test_file, *$tork_line_numbers].join(':')
|
11
|
+
else
|
12
|
+
$tork_line_numbers.each do |line|
|
13
|
+
ARGV.push '--line_number', line.to_s
|
14
|
+
end
|
4
15
|
end
|
5
16
|
end
|
data/lib/tork/version.rb
CHANGED
data/man/man0/VERSION.html
CHANGED
@@ -7,7 +7,12 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man0">man0</a>/VERSION</span></div></div><div class="container-fluid"><h2 id="version-19-8-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man0">man0</a>/VERSION</span></div></div><div class="container-fluid"><h2 id="version-19-8-2-2014-07-01"><a name="version-19-8-2-2014-07-01" href="#version-19-8-2-2014-07-01" class="md2man-permalink" title="permalink"></a>Version 19.8.2 (2014-07-01)</h2><p>This release adds support for RSpec 3+ in the <code>spec</code> configuration helper.</p><h3 id="patch"><a name="patch" href="#patch" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
11
|
+
<ul>
|
12
|
+
<li><p>GH-58: RSpec 3.0 removed <code>--line_number</code> command-line option.</p><p>Thanks to Jonathan Cairns for reporting this issue in GH-58:
|
13
|
+
<a href="https://github.com/sunaku/tork/issues/58">https://github.com/sunaku/tork/issues/58</a></p></li>
|
14
|
+
</ul>
|
15
|
+
<h2 id="version-19-8-1-2014-06-28"><a name="version-19-8-1-2014-06-28" href="#version-19-8-1-2014-06-28" class="md2man-permalink" title="permalink"></a>Version 19.8.1 (2014-06-28)</h2><h3 id="patch-1"><a name="patch-1" href="#patch-1" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
11
16
|
<ul>
|
12
17
|
<li><p><a class="md2man-reference" href="../man1/tork-driver.1.html">tork-driver(1)</a>: sanitize the file paths reported by <a class="md2man-reference" href="../man1/tork-herald.1.html">tork-herald(1)</a>.</p><p>This allows a user to override <a class="md2man-reference" href="../man1/tork-herald.1.html">tork-herald(1)</a> with their own program
|
13
18
|
that reports changed file paths in a less than ideal, but valid, way.
|
@@ -27,7 +32,7 @@ killed so it should be safe to delete it and start up a new server.</p></li>
|
|
27
32
|
having to first add Tork to its <code>Gemfile</code> and then <code>bundle install</code> it.
|
28
33
|
In fact, installing the Tork gem <em>outside</em> of the bundle is sufficient.</p><p>Try it: go into a bundled application and call <code>tork</code> to run its tests!</p></li>
|
29
34
|
</ul>
|
30
|
-
<h3 id="patch-
|
35
|
+
<h3 id="patch-2"><a name="patch-2" href="#patch-2" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
31
36
|
<ul>
|
32
37
|
<li><p>Server: fix crash when Fixnum is sent as a message.</p>
|
33
38
|
<pre><code>lib/tork/server.rb:45:in `block (2 levels) in loop':
|
@@ -58,7 +63,7 @@ JSON::ParserError: A JSON text must at least contain two octets!
|
|
58
63
|
<li><p>Re-run failed tests after reabsorbing overhead.</p><p>Thanks to Chris Scharf for <a href="https://github.com/sunaku/tork/pull/57">contributing this
|
59
64
|
patch</a>.</p></li>
|
60
65
|
</ul>
|
61
|
-
<h2 id="version-19-6-1-2014-03-04"><a name="version-19-6-1-2014-03-04" href="#version-19-6-1-2014-03-04" class="md2man-permalink" title="permalink"></a>Version 19.6.1 (2014-03-04)</h2><p>This release improves support for old Rails versions.</p><h3 id="patch-
|
66
|
+
<h2 id="version-19-6-1-2014-03-04"><a name="version-19-6-1-2014-03-04" href="#version-19-6-1-2014-03-04" class="md2man-permalink" title="permalink"></a>Version 19.6.1 (2014-03-04)</h2><p>This release improves support for old Rails versions.</p><h3 id="patch-3"><a name="patch-3" href="#patch-3" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
62
67
|
<ul>
|
63
68
|
<li><p>Rails < 3.1.0 does not have <code>connection_config()</code>.</p></li>
|
64
69
|
<li><p><code>schema_cache()</code> is only defined in Rails >= 4.</p></li>
|
@@ -67,13 +72,13 @@ patch</a>.</p></li>
|
|
67
72
|
<ul>
|
68
73
|
<li><a class="md2man-reference" href="../man1/tork-runner.1.html">tork-runner(1)</a> now prints the percentage of completed tests to stderr.</li>
|
69
74
|
</ul>
|
70
|
-
<h3 id="patch-
|
75
|
+
<h3 id="patch-4"><a name="patch-4" href="#patch-4" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
71
76
|
<ul>
|
72
77
|
<li><a class="md2man-reference" href="../man1/tork-engine.1.html">tork-engine(1)</a> emitted the <code>idle</code> event when tests were still running.</li>
|
73
78
|
</ul>
|
74
79
|
<h2 id="version-19-5-1-2013-12-02"><a name="version-19-5-1-2013-12-02" href="#version-19-5-1-2013-12-02" class="md2man-permalink" title="permalink"></a>Version 19.5.1 (2013-12-02)</h2><p>This release restores support for Capybara integration tests in the <code>rails</code>
|
75
80
|
configuration helper, corrects the <code>idle</code> event in <a class="md2man-reference" href="../man1/tork-engine.1.html">tork-engine(1)</a>, and fixes
|
76
|
-
some minor bugs in <a class="md2man-reference" href="../man1/tork-runner.1.html">tork-runner(1)</a> and <a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>.</p><h3 id="patch-
|
81
|
+
some minor bugs in <a class="md2man-reference" href="../man1/tork-runner.1.html">tork-runner(1)</a> and <a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>.</p><h3 id="patch-5"><a name="patch-5" href="#patch-5" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
77
82
|
<ul>
|
78
83
|
<li><p>Rails: keep sub-Rails connected to in-memory SQLite3 test database.</p><p>When another Rails instance is started by Capybara, it sets up a new
|
79
84
|
connection to the test database instead of re-using our in-memory DB.</p><p><a href="http://www.spacevatican.org/2012/8/18/threading-the-rat/">http://www.spacevatican.org/2012/8/18/threading-the-rat/</a></p></li>
|
@@ -97,7 +102,7 @@ to re-use the former's resources to run your test suite non-interactively.</
|
|
97
102
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>: show help message to clients upon connecting.</p></li>
|
98
103
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>: tell user to input 'h' key for help message.</p></li>
|
99
104
|
</ul>
|
100
|
-
<h3 id="patch-
|
105
|
+
<h3 id="patch-6"><a name="patch-6" href="#patch-6" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
101
106
|
<ul>
|
102
107
|
<li><p><a class="md2man-reference" href="../man1/tork-notify.1.html">tork-notify(1)</a>: must pass mutable local variables into Thread.new.</p><p>The <code>icon</code> local variable would be overwritten (to nil sometimes)
|
103
108
|
outside of the thread and cause the thread body to silently fail.</p><p>See <a href="http://stackoverflow.com/q/16745840">http://stackoverflow.com/q/16745840</a> for details.</p></li>
|
@@ -152,7 +157,7 @@ SQLite3 and you are using Rails 3 or newer.</li>
|
|
152
157
|
<li><p>GH-55: upgrade listen & rake gem dependencies.</p><p>Thanks to Matthew Albright for reporting this issue in GH-55:
|
153
158
|
<a href="https://github.com/sunaku/tork/issues/55">https://github.com/sunaku/tork/issues/55</a></p></li>
|
154
159
|
</ul>
|
155
|
-
<h2 id="version-19-3-1-2013-06-07"><a name="version-19-3-1-2013-06-07" href="#version-19-3-1-2013-06-07" class="md2man-permalink" title="permalink"></a>Version 19.3.1 (2013-06-07)</h2><h3 id="patch-
|
160
|
+
<h2 id="version-19-3-1-2013-06-07"><a name="version-19-3-1-2013-06-07" href="#version-19-3-1-2013-06-07" class="md2man-permalink" title="permalink"></a>Version 19.3.1 (2013-06-07)</h2><h3 id="patch-7"><a name="patch-7" href="#patch-7" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
156
161
|
<ul>
|
157
162
|
<li><p>server: rescue from failed writes to asynchronously closed clients.</p><p>Thanks to Jonathan Cairns for reporting and fixing this bug in GH-53:
|
158
163
|
<a href="https://github.com/sunaku/tork/issues/53">https://github.com/sunaku/tork/issues/53</a></p></li>
|
@@ -173,7 +178,7 @@ have finished running and no more tests are queued for running.</p><p>Thanks to
|
|
173
178
|
<li><p>README: use manpage xrefs for linking in HTML mans</p></li>
|
174
179
|
</ul>
|
175
180
|
<h2 id="version-19-2-2-2013-05-04"><a name="version-19-2-2-2013-05-04" href="#version-19-2-2-2013-05-04" class="md2man-permalink" title="permalink"></a>Version 19.2.2 (2013-05-04)</h2><p>This release makes Tork resilient to <code>Errno::EADDRINUSE</code> errors that may occur
|
176
|
-
sometimes, intermittently, when test execution overhead is being reabsorbed.</p><h3 id="patch-
|
181
|
+
sometimes, intermittently, when test execution overhead is being reabsorbed.</p><h3 id="patch-8"><a name="patch-8" href="#patch-8" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
177
182
|
<ul>
|
178
183
|
<li>server: retry until the socket opens successfully</li>
|
179
184
|
</ul>
|
@@ -181,7 +186,7 @@ sometimes, intermittently, when test execution overhead is being reabsorbed.</p>
|
|
181
186
|
<ul>
|
182
187
|
<li>include md2man rake tasks in developer's rakefile</li>
|
183
188
|
</ul>
|
184
|
-
<h2 id="version-19-2-1-2013-02-08"><a name="version-19-2-1-2013-02-08" href="#version-19-2-1-2013-02-08" class="md2man-permalink" title="permalink"></a>Version 19.2.1 (2013-02-08)</h2><h3 id="patch-
|
189
|
+
<h2 id="version-19-2-1-2013-02-08"><a name="version-19-2-1-2013-02-08" href="#version-19-2-1-2013-02-08" class="md2man-permalink" title="permalink"></a>Version 19.2.1 (2013-02-08)</h2><h3 id="patch-9"><a name="patch-9" href="#patch-9" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
185
190
|
<ul>
|
186
191
|
<li><p>GH-46: allow reassigning <code>$tork_*</code> variable values. Thanks to Joe
|
187
192
|
Escalante for reminding me to fix this issue.</p></li>
|
@@ -195,7 +200,7 @@ reporting it.</p></li>
|
|
195
200
|
applications that use the Devise authentication framework. Thanks to Ryan
|
196
201
|
Ahearn for this contribution.</li>
|
197
202
|
</ul>
|
198
|
-
<h3 id="patch-
|
203
|
+
<h3 id="patch-10"><a name="patch-10" href="#patch-10" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
199
204
|
<ul>
|
200
205
|
<li><p>gemspec: upgrade to <em>listen</em> 0.7.0 to fix issue #43. Thanks to Ryan
|
201
206
|
Ahearn for reporting this issue and helping debug it, and to Thibaud
|
@@ -206,14 +211,14 @@ Guillaume-Gentil for fixing this issue upstream in the <em>listen</em> library.<
|
|
206
211
|
<ul>
|
207
212
|
<li>tork-driver: don't run overhead files as test files</li>
|
208
213
|
</ul>
|
209
|
-
<h3 id="patch-
|
214
|
+
<h3 id="patch-11"><a name="patch-11" href="#patch-11" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
210
215
|
<ul>
|
211
216
|
<li><p>rails: run dependent tests when <code>app/views/*</code> change</p></li>
|
212
217
|
<li><p>Clear FactoryGirl sequences and traits on fork in the <code>factory_girl</code>
|
213
218
|
configuration helper. Thanks to Ryan Ahearn for this contribution.</p></li>
|
214
219
|
<li><p>server: fix clean up of socket files upon exit</p></li>
|
215
220
|
</ul>
|
216
|
-
<h2 id="version-19-0-2-2012-11-07"><a name="version-19-0-2-2012-11-07" href="#version-19-0-2-2012-11-07" class="md2man-permalink" title="permalink"></a>Version 19.0.2 (2012-11-07)</h2><h3 id="patch-
|
221
|
+
<h2 id="version-19-0-2-2012-11-07"><a name="version-19-0-2-2012-11-07" href="#version-19-0-2-2012-11-07" class="md2man-permalink" title="permalink"></a>Version 19.0.2 (2012-11-07)</h2><h3 id="patch-12"><a name="patch-12" href="#patch-12" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
217
222
|
<ul>
|
218
223
|
<li><p>Monkeypatch <code>at_exit()</code> to fix RSpec and MiniTest:</p><p><a href="https://github.com/rspec/rspec-core/pull/720">https://github.com/rspec/rspec-core/pull/720</a></p><p><a href="https://github.com/seattlerb/minitest/pull/183">https://github.com/seattlerb/minitest/pull/183</a></p></li>
|
219
224
|
</ul>
|
@@ -222,7 +227,7 @@ configuration helper. Thanks to Ryan Ahearn for this contribution.</p></li>
|
|
222
227
|
<li><p>README: document RSpec 2.9.0+ autorun skipping bug</p></li>
|
223
228
|
<li><p>README: MiniTest 1.3.2+ also has autorun skip bug</p></li>
|
224
229
|
</ul>
|
225
|
-
<h2 id="version-19-0-1-2012-10-26"><a name="version-19-0-1-2012-10-26" href="#version-19-0-1-2012-10-26" class="md2man-permalink" title="permalink"></a>Version 19.0.1 (2012-10-26)</h2><h3 id="patch-
|
230
|
+
<h2 id="version-19-0-1-2012-10-26"><a name="version-19-0-1-2012-10-26" href="#version-19-0-1-2012-10-26" class="md2man-permalink" title="permalink"></a>Version 19.0.1 (2012-10-26)</h2><h3 id="patch-13"><a name="patch-13" href="#patch-13" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
226
231
|
<ul>
|
227
232
|
<li><p>Support testing projects that have both test/ and spec/ directories.</p><p>I assumed that users would only have either test/ or spec/ but not both.
|
228
233
|
Do you know what happens when a test/ is run by RSpec or vice versa? :-)</p><p>Thanks to Kyle Peyton for reporting this issue.</p></li>
|
@@ -270,7 +275,7 @@ made possible by the awesome power of IO.select() and UNIX domain sockets.</p></
|
|
270
275
|
events to notify you about changes in a test file's pass/fail status.</p></li>
|
271
276
|
<li><p>typing Control-D now breaks tork programs out of <code>Tork::Server#loop()</code></p></li>
|
272
277
|
</ul>
|
273
|
-
<h3 id="patch-
|
278
|
+
<h3 id="patch-14"><a name="patch-14" href="#patch-14" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
274
279
|
<ul>
|
275
280
|
<li><a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a>: stop workers with SIGKILL when quitting</li>
|
276
281
|
</ul>
|
@@ -286,7 +291,7 @@ events to notify you about changes in a test file's pass/fail status.</p></l
|
|
286
291
|
<li>GH-39: upgrade listen gem version to fix a bug in OSX.
|
287
292
|
Thanks to Adam Grant for reporting this issue.</li>
|
288
293
|
</ul>
|
289
|
-
<h2 id="version-18-2-3-2012-09-26"><a name="version-18-2-3-2012-09-26" href="#version-18-2-3-2012-09-26" class="md2man-permalink" title="permalink"></a>Version 18.2.3 (2012-09-26)</h2><h3 id="patch-
|
294
|
+
<h2 id="version-18-2-3-2012-09-26"><a name="version-18-2-3-2012-09-26" href="#version-18-2-3-2012-09-26" class="md2man-permalink" title="permalink"></a>Version 18.2.3 (2012-09-26)</h2><h3 id="patch-15"><a name="patch-15" href="#patch-15" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
290
295
|
<ul>
|
291
296
|
<li><p>Restored support for building Tork from its gemspec under Ruby 1.8.
|
292
297
|
Thanks to Ohno Shin'ichi for reporting this issue and contributing a
|
@@ -301,7 +306,7 @@ Let the user see stack traces when they press Control-C.</p></li>
|
|
301
306
|
replaced by reaping threads quite a few releases ago.</p></li>
|
302
307
|
<li><p>Use $0 instead of hard-coding the program name.</p></li>
|
303
308
|
</ul>
|
304
|
-
<h2 id="version-18-2-2-2012-07-11"><a name="version-18-2-2-2012-07-11" href="#version-18-2-2-2012-07-11" class="md2man-permalink" title="permalink"></a>Version 18.2.2 (2012-07-11)</h2><h3 id="patch-
|
309
|
+
<h2 id="version-18-2-2-2012-07-11"><a name="version-18-2-2-2012-07-11" href="#version-18-2-2-2012-07-11" class="md2man-permalink" title="permalink"></a>Version 18.2.2 (2012-07-11)</h2><h3 id="patch-16"><a name="patch-16" href="#patch-16" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
305
310
|
<ul>
|
306
311
|
<li><p>GH-35: resume dispatched but not yet started tests.</p><p>After reabsorbing overhead, we need to resume previously dispatched test
|
307
312
|
files that have not yet finished running. This includes the waiting set
|
@@ -309,7 +314,7 @@ files that have not yet finished running. This includes the waiting set
|
|
309
314
|
and already started running). Otherwise, we encounter a bug where test
|
310
315
|
files in the waiting set can NEVER be run again!</p></li>
|
311
316
|
</ul>
|
312
|
-
<h2 id="version-18-2-1-2012-07-05"><a name="version-18-2-1-2012-07-05" href="#version-18-2-1-2012-07-05" class="md2man-permalink" title="permalink"></a>Version 18.2.1 (2012-07-05)</h2><h3 id="patch-
|
317
|
+
<h2 id="version-18-2-1-2012-07-05"><a name="version-18-2-1-2012-07-05" href="#version-18-2-1-2012-07-05" class="md2man-permalink" title="permalink"></a>Version 18.2.1 (2012-07-05)</h2><h3 id="patch-17"><a name="patch-17" href="#patch-17" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
313
318
|
<ul>
|
314
319
|
<li>GH-37: switch from Guard::Listener to Listen gem.
|
315
320
|
Thanks to Jesse Cooke for reporting this issue.</li>
|
@@ -327,7 +332,7 @@ the "rerun<em>failed</em>tests" command and no tests have failed yet,
|
|
327
332
|
now see a warning message that explains the situation. Thanks to
|
328
333
|
NagaChaitanya Vellanki (@chaitanyav) for suggesting this change.</li>
|
329
334
|
</ul>
|
330
|
-
<h3 id="patch-
|
335
|
+
<h3 id="patch-18"><a name="patch-18" href="#patch-18" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
331
336
|
<ul>
|
332
337
|
<li><p>GH-32: Restore support for Selenium and Capybara by replacing the global
|
333
338
|
SIGCHLD handler in <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a> with individual threads, one per forked
|
@@ -352,7 +357,7 @@ that exist in or beneath the current working directory:</p>
|
|
352
357
|
<li>If you're on Ruby 1.9, please use 1.9.3 or newer because 1.9.2 is
|
353
358
|
known to segfault under RSpec and Rails. See GH-30 and GH-32.</li>
|
354
359
|
</ul>
|
355
|
-
<h3 id="patch-
|
360
|
+
<h3 id="patch-19"><a name="patch-19" href="#patch-19" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
356
361
|
<ul>
|
357
362
|
<li><p>GH-27: Cucumber features now run correctly under RSpec. Thanks to Scott
|
358
363
|
Radcliff for reporting this issue and to David Burrows for solving it!</p></li>
|
@@ -406,7 +411,7 @@ multiple globs in an array, in addition to just a single glob or <code>nil</code
|
|
406
411
|
<li><p>Added support for the MiniTest convention of naming test files as
|
407
412
|
<code>test/**/test_*.rb</code> and <code>spec/**/spec_*.rb</code>. (Jose Pablo Barrantes)</p></li>
|
408
413
|
</ul>
|
409
|
-
<h2 id="version-17-0-1-2012-01-29"><a name="version-17-0-1-2012-01-29" href="#version-17-0-1-2012-01-29" class="md2man-permalink" title="permalink"></a>Version 17.0.1 (2012-01-29)</h2><h3 id="patch-
|
414
|
+
<h2 id="version-17-0-1-2012-01-29"><a name="version-17-0-1-2012-01-29" href="#version-17-0-1-2012-01-29" class="md2man-permalink" title="permalink"></a>Version 17.0.1 (2012-01-29)</h2><h3 id="patch-20"><a name="patch-20" href="#patch-20" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
410
415
|
<ul>
|
411
416
|
<li><p><a class="md2man-reference" href="../man1/tork-herald.1.html">tork-herald(1)</a> <em>sometimes</em> reported changed test files twice.</p></li>
|
412
417
|
<li><p>tork/driver: only whole test file runs should qualify as pass.</p></li>
|
@@ -471,7 +476,7 @@ items to the output stream.</p></li>
|
|
471
476
|
<ul>
|
472
477
|
<li>GH-19: add <code>tork cucumber</code> for running cucumber features.</li>
|
473
478
|
</ul>
|
474
|
-
<h3 id="patch-
|
479
|
+
<h3 id="patch-21"><a name="patch-21" href="#patch-21" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
475
480
|
<ul>
|
476
481
|
<li><p>tork/config/rails: support Rails 2 and don't assume AR is used. (Benjamin
|
477
482
|
Quorning)</p></li>
|
@@ -482,7 +487,7 @@ $TORK_CONFIGS should override settings from the <code>.tork.rb</code> file.</p><
|
|
482
487
|
See <a href="http://stackoverflow.com/questions/1497756">http://stackoverflow.com/questions/1497756</a>.
|
483
488
|
Also added forgotten Luke Wendling to the list.</p></li>
|
484
489
|
</ul>
|
485
|
-
<h2 id="version-15-0-1-2012-01-24"><a name="version-15-0-1-2012-01-24" href="#version-15-0-1-2012-01-24" class="md2man-permalink" title="permalink"></a>Version 15.0.1 (2012-01-24)</h2><h3 id="patch-
|
490
|
+
<h2 id="version-15-0-1-2012-01-24"><a name="version-15-0-1-2012-01-24" href="#version-15-0-1-2012-01-24" class="md2man-permalink" title="permalink"></a>Version 15.0.1 (2012-01-24)</h2><h3 id="patch-22"><a name="patch-22" href="#patch-22" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
486
491
|
<ul>
|
487
492
|
<li><p>GH-21: Ruby 1.9 class_eval() is smarter than 1.8.</p></li>
|
488
493
|
<li><p>GH-20: forgot <code>require 'thread'</code> for Mutex class. (Jesse Cooke)</p></li>
|
@@ -533,11 +538,11 @@ PGError: connection not open
|
|
533
538
|
<li><p><a class="md2man-reference">testr(1)</a> no longer shows command menu at startup. Press ENTER to see it.</p></li>
|
534
539
|
<li><p><a class="md2man-reference">testr(1)</a> now notifies you before absorbing overhead at startup.</p></li>
|
535
540
|
</ul>
|
536
|
-
<h3 id="patch-
|
541
|
+
<h3 id="patch-23"><a name="patch-23" href="#patch-23" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
537
542
|
<ul>
|
538
543
|
<li><a class="md2man-reference">testr(1)</a> now accepts death silently when Control-C is pressed.</li>
|
539
544
|
</ul>
|
540
|
-
<h2 id="version-14-1-3-2012-01-13"><a name="version-14-1-3-2012-01-13" href="#version-14-1-3-2012-01-13" class="md2man-permalink" title="permalink"></a>Version 14.1.3 (2012-01-13)</h2><h3 id="patch-
|
545
|
+
<h2 id="version-14-1-3-2012-01-13"><a name="version-14-1-3-2012-01-13" href="#version-14-1-3-2012-01-13" class="md2man-permalink" title="permalink"></a>Version 14.1.3 (2012-01-13)</h2><h3 id="patch-24"><a name="patch-24" href="#patch-24" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
541
546
|
<ul>
|
542
547
|
<li>Add support Guard v0.9.0 and newer in <code>testr-herald</code>. (Jose Pablo
|
543
548
|
Barrantes)</li>
|
@@ -555,7 +560,7 @@ breakages.</li>
|
|
555
560
|
<ul>
|
556
561
|
<li>Upgrade to binman 3 for better bundler support.</li>
|
557
562
|
</ul>
|
558
|
-
<h2 id="version-14-1-1-2011-12-07"><a name="version-14-1-1-2011-12-07" href="#version-14-1-1-2011-12-07" class="md2man-permalink" title="permalink"></a>Version 14.1.1 (2011-12-07)</h2><h3 id="patch-
|
563
|
+
<h2 id="version-14-1-1-2011-12-07"><a name="version-14-1-1-2011-12-07" href="#version-14-1-1-2011-12-07" class="md2man-permalink" title="permalink"></a>Version 14.1.1 (2011-12-07)</h2><h3 id="patch-25"><a name="patch-25" href="#patch-25" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
559
564
|
<ul>
|
560
565
|
<li><p>Do not fail when given test file no longer exists.</p></li>
|
561
566
|
<li><p>Make xUnit <code>--name</code> option regexp case-insensitive.</p></li>
|
@@ -584,7 +589,7 @@ have a <code>--help</code> option which displays their UNIX manual page. Try it
|
|
584
589
|
documented in their manual pages, so you should have everything you
|
585
590
|
need to create <em>your own custom user interface to TestR</em> if you wish! :-)</p></li>
|
586
591
|
</ul>
|
587
|
-
<h3 id="patch-
|
592
|
+
<h3 id="patch-26"><a name="patch-26" href="#patch-26" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
588
593
|
<ul>
|
589
594
|
<li>SIGCHLD does not awaken main thread in Ruby 1.9.3p0.</li>
|
590
595
|
</ul>
|
@@ -594,12 +599,12 @@ need to create <em>your own custom user interface to TestR</em> if you wish! :-)
|
|
594
599
|
<li><p>Testr: tell user to press ENTER after command key.</p></li>
|
595
600
|
<li><p>README: add tip on loading factory_girl factories.</p></li>
|
596
601
|
</ul>
|
597
|
-
<h2 id="version-14-0-3-2011-10-11"><a name="version-14-0-3-2011-10-11" href="#version-14-0-3-2011-10-11" class="md2man-permalink" title="permalink"></a>Version 14.0.3 (2011-10-11)</h2><h3 id="patch-
|
602
|
+
<h2 id="version-14-0-3-2011-10-11"><a name="version-14-0-3-2011-10-11" href="#version-14-0-3-2011-10-11" class="md2man-permalink" title="permalink"></a>Version 14.0.3 (2011-10-11)</h2><h3 id="patch-27"><a name="patch-27" href="#patch-27" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
598
603
|
<ul>
|
599
604
|
<li>Forgot to migrate the <code>testr/config/rails</code> configuration helper to use the
|
600
605
|
new TestR configuration parameter names.</li>
|
601
606
|
</ul>
|
602
|
-
<h2 id="version-14-0-2-2011-10-11"><a name="version-14-0-2-2011-10-11" href="#version-14-0-2-2011-10-11" class="md2man-permalink" title="permalink"></a>Version 14.0.2 (2011-10-11)</h2><h3 id="patch-
|
607
|
+
<h2 id="version-14-0-2-2011-10-11"><a name="version-14-0-2-2011-10-11" href="#version-14-0-2-2011-10-11" class="md2man-permalink" title="permalink"></a>Version 14.0.2 (2011-10-11)</h2><h3 id="patch-28"><a name="patch-28" href="#patch-28" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
603
608
|
<ul>
|
604
609
|
<li><p>Fix updating passed/failed test files bookkeeping. Once a test file
|
605
610
|
failed, it was (incorrectly) always considered failed, even if it passed
|
@@ -610,7 +615,7 @@ later on.</p></li>
|
|
610
615
|
<ul>
|
611
616
|
<li>Rename <code>*.md</code> files to <code>*.markdown</code> to avoid ambiguity.</li>
|
612
617
|
</ul>
|
613
|
-
<h2 id="version-14-0-1-2011-10-10"><a name="version-14-0-1-2011-10-10" href="#version-14-0-1-2011-10-10" class="md2man-permalink" title="permalink"></a>Version 14.0.1 (2011-10-10)</h2><h3 id="patch-
|
618
|
+
<h2 id="version-14-0-1-2011-10-10"><a name="version-14-0-1-2011-10-10" href="#version-14-0-1-2011-10-10" class="md2man-permalink" title="permalink"></a>Version 14.0.1 (2011-10-10)</h2><h3 id="patch-29"><a name="patch-29" href="#patch-29" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
614
619
|
<ul>
|
615
620
|
<li><p>Use blue/red for pass/fail instead of green/red to accommodate the color
|
616
621
|
blind.</p></li>
|
@@ -687,7 +692,7 @@ Verbruggen)</p></li>
|
|
687
692
|
<li><p>Turn off executable bit on loop.rb file mode.</p></li>
|
688
693
|
<li><p>Pass child ENV directly to exec() for atomicity.</p></li>
|
689
694
|
</ul>
|
690
|
-
<h2 id="version-12-3-1-2011-07-19"><a name="version-12-3-1-2011-07-19" href="#version-12-3-1-2011-07-19" class="md2man-permalink" title="permalink"></a>Version 12.3.1 (2011-07-19)</h2><h3 id="patch-
|
695
|
+
<h2 id="version-12-3-1-2011-07-19"><a name="version-12-3-1-2011-07-19" href="#version-12-3-1-2011-07-19" class="md2man-permalink" title="permalink"></a>Version 12.3.1 (2011-07-19)</h2><h3 id="patch-30"><a name="patch-30" href="#patch-30" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
691
696
|
<ul>
|
692
697
|
<li>Binary data could not be stored in environment variable values.</li>
|
693
698
|
</ul>
|
@@ -722,7 +727,7 @@ library</a>.</p></li>
|
|
722
727
|
<li>Add <code>Test::Loop.delay_per_iteration</code> parameter to control the number of
|
723
728
|
seconds (or fractions thereof) to sleep in between test-loop iterations.</li>
|
724
729
|
</ul>
|
725
|
-
<h2 id="version-12-0-4-2011-04-29"><a name="version-12-0-4-2011-04-29" href="#version-12-0-4-2011-04-29" class="md2man-permalink" title="permalink"></a>Version 12.0.4 (2011-04-29)</h2><h3 id="patch-
|
730
|
+
<h2 id="version-12-0-4-2011-04-29"><a name="version-12-0-4-2011-04-29" href="#version-12-0-4-2011-04-29" class="md2man-permalink" title="permalink"></a>Version 12.0.4 (2011-04-29)</h2><h3 id="patch-31"><a name="patch-31" href="#patch-31" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
726
731
|
<ul>
|
727
732
|
<li><p>Reabsorb overhead when user's configuration file changes. (Brian D. Burns
|
728
733
|
and Daniel Pittman)</p></li>
|
@@ -730,7 +735,7 @@ and Daniel Pittman)</p></li>
|
|
730
735
|
not necessary! <a href="https://github.com/sunaku/test-loop/issues/5">This issue</a>
|
731
736
|
was solved by upgrading to the newer 2.6.38.4-1 Linux kernel on my system.</p></li>
|
732
737
|
</ul>
|
733
|
-
<h2 id="version-12-0-3-2011-04-25"><a name="version-12-0-3-2011-04-25" href="#version-12-0-3-2011-04-25" class="md2man-permalink" title="permalink"></a>Version 12.0.3 (2011-04-25)</h2><h3 id="patch-
|
738
|
+
<h2 id="version-12-0-3-2011-04-25"><a name="version-12-0-3-2011-04-25" href="#version-12-0-3-2011-04-25" class="md2man-permalink" title="permalink"></a>Version 12.0.3 (2011-04-25)</h2><h3 id="patch-32"><a name="patch-32" href="#patch-32" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
734
739
|
<ul>
|
735
740
|
<li><p>Fix SIGCHLD handling and test completion reporting (Daniel Pittman).</p><p>We need to reap all ready children in SIGCHLD, not just the first, and
|
736
741
|
should not be reporting completion in the signal handler.</p><p>On a fast machine, or where there is a slow hook executed at the
|
@@ -763,7 +768,7 @@ that would also stop you from doing clever things." ~Doug Gwyn</p></blockqu
|
|
763
768
|
Many thanks to Brian D. Burns and Daniel Pittman for helping solve <a href="https://github.com/sunaku/test-loop/issues/5">this
|
764
769
|
issue</a>.</p></li>
|
765
770
|
</ul>
|
766
|
-
<h2 id="version-12-0-2-2011-04-21"><a name="version-12-0-2-2011-04-21" href="#version-12-0-2-2011-04-21" class="md2man-permalink" title="permalink"></a>Version 12.0.2 (2011-04-21)</h2><h3 id="patch-
|
771
|
+
<h2 id="version-12-0-2-2011-04-21"><a name="version-12-0-2-2011-04-21" href="#version-12-0-2-2011-04-21" class="md2man-permalink" title="permalink"></a>Version 12.0.2 (2011-04-21)</h2><h3 id="patch-33"><a name="patch-33" href="#patch-33" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
767
772
|
<ul>
|
768
773
|
<li><p>Consider DB schema dump file as overhead in Rails.</p></li>
|
769
774
|
<li><p>Do not consider test factories as overhead in Rails.</p></li>
|
@@ -777,7 +782,7 @@ issue</a>.</p></li>
|
|
777
782
|
<li><p>Retain <a class="md2man-reference">ps(1)</a> column header in watch command output.</p></li>
|
778
783
|
<li><p>Begin parameter descriptions with the noun itself.</p></li>
|
779
784
|
</ul>
|
780
|
-
<h2 id="version-12-0-1-2011-04-20"><a name="version-12-0-1-2011-04-20" href="#version-12-0-1-2011-04-20" class="md2man-permalink" title="permalink"></a>Version 12.0.1 (2011-04-20)</h2><h3 id="patch-
|
785
|
+
<h2 id="version-12-0-1-2011-04-20"><a name="version-12-0-1-2011-04-20" href="#version-12-0-1-2011-04-20" class="md2man-permalink" title="permalink"></a>Version 12.0.1 (2011-04-20)</h2><h3 id="patch-34"><a name="patch-34" href="#patch-34" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
781
786
|
<ul>
|
782
787
|
<li><p>Restore support for Ruby 1.8.7.</p></li>
|
783
788
|
<li><p>Allow user's test execution overhead to fork.</p></li>
|
@@ -798,7 +803,7 @@ your models are already loaded & cached by the Rails environment.</p></li>
|
|
798
803
|
<li><p>Your tests can no longer read from the user's terminal (master's STDIN);
|
799
804
|
instead they will read from an empty stream (the reading end of IO.popen).</p></li>
|
800
805
|
</ul>
|
801
|
-
<h3 id="patch-
|
806
|
+
<h3 id="patch-35"><a name="patch-35" href="#patch-35" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
802
807
|
<ul>
|
803
808
|
<li><p>Replace threads with SIGCHLD for reporting test results.</p><p>This fixes deadlock errors that sometimes occurred when the user's chosen
|
804
809
|
test library tried to print something to STDOUT/STDERR (even though those
|
@@ -822,7 +827,7 @@ reabsorptions. (Brian D. Burns)</p></li>
|
|
822
827
|
<li><p>Add tip about annihilating test-loop processes.</p></li>
|
823
828
|
<li><p>Fix markdown formatting.</p></li>
|
824
829
|
</ul>
|
825
|
-
<h2 id="version-11-0-1-2011-04-14"><a name="version-11-0-1-2011-04-14" href="#version-11-0-1-2011-04-14" class="md2man-permalink" title="permalink"></a>Version 11.0.1 (2011-04-14)</h2><h3 id="patch-
|
830
|
+
<h2 id="version-11-0-1-2011-04-14"><a name="version-11-0-1-2011-04-14" href="#version-11-0-1-2011-04-14" class="md2man-permalink" title="permalink"></a>Version 11.0.1 (2011-04-14)</h2><h3 id="patch-36"><a name="patch-36" href="#patch-36" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
826
831
|
<ul>
|
827
832
|
<li>Only attempt to define Railtie if the current Rails version supports it.</li>
|
828
833
|
</ul>
|
@@ -837,7 +842,7 @@ automatically if your test execution overhead includes Ruby on Rails.</li>
|
|
837
842
|
<code>config.cache_classes = false</code> for your test environment. (Brian D.
|
838
843
|
Burns)</li>
|
839
844
|
</ul>
|
840
|
-
<h3 id="patch-
|
845
|
+
<h3 id="patch-37"><a name="patch-37" href="#patch-37" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
841
846
|
<ul>
|
842
847
|
<li><p>Avoid deadlock errors when printing output from Test::Unit and MiniTest.
|
843
848
|
(Brian D. Burns)</p>
|
@@ -847,7 +852,7 @@ Burns)</li>
|
|
847
852
|
Do not treat it as a failure by printing the log file.</p></li>
|
848
853
|
<li><p>Ignore SIGINT in workers; only master must honor it.</p></li>
|
849
854
|
</ul>
|
850
|
-
<h2 id="version-10-0-1-2011-04-08"><a name="version-10-0-1-2011-04-08" href="#version-10-0-1-2011-04-08" class="md2man-permalink" title="permalink"></a>Version 10.0.1 (2011-04-08)</h2><h3 id="patch-
|
855
|
+
<h2 id="version-10-0-1-2011-04-08"><a name="version-10-0-1-2011-04-08" href="#version-10-0-1-2011-04-08" class="md2man-permalink" title="permalink"></a>Version 10.0.1 (2011-04-08)</h2><h3 id="patch-38"><a name="patch-38" href="#patch-38" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
851
856
|
<ul>
|
852
857
|
<li><p>Workers must ignore SIGTSTP, otherwise master waits forever before
|
853
858
|
exiting.</p></li>
|
@@ -872,7 +877,7 @@ the following:</p>
|
|
872
877
|
<pre><code>watch 'ps xf | grep test-loop | sed 1,3d'
|
873
878
|
</code></pre></li>
|
874
879
|
</ul>
|
875
|
-
<h3 id="patch-
|
880
|
+
<h3 id="patch-39"><a name="patch-39" href="#patch-39" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
876
881
|
<ul>
|
877
882
|
<li>Skip <code>at_exit()</code> when exiting master process. This prevents an empty test
|
878
883
|
from being run when exiting the loop after having processed a test/spec
|
@@ -898,7 +903,7 @@ system resources.</p></li>
|
|
898
903
|
<li><p>Use ANSI clear line command to erase control-key combinations outputted by
|
899
904
|
shells such as BASH and ZSH in test-loop's output. (Brian D. Burns)</p></li>
|
900
905
|
</ul>
|
901
|
-
<h3 id="patch-
|
906
|
+
<h3 id="patch-40"><a name="patch-40" href="#patch-40" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
902
907
|
<ul>
|
903
908
|
<li><p><code>@last_ran_at</code> was being set during every iteration of the loop. This is
|
904
909
|
problematic when Ruby's <code>Time.now</code> is more precise than your filesystem's
|
data/man/man0/VERSION.markdown
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## Version 19.8.2 (2014-07-01)
|
2
|
+
|
3
|
+
This release adds support for RSpec 3+ in the `spec` configuration helper.
|
4
|
+
|
5
|
+
### Patch:
|
6
|
+
|
7
|
+
* GH-58: RSpec 3.0 removed `--line_number` command-line option.
|
8
|
+
|
9
|
+
Thanks to Jonathan Cairns for reporting this issue in GH-58:
|
10
|
+
https://github.com/sunaku/tork/issues/58
|
11
|
+
|
1
12
|
## Version 19.8.1 (2014-06-28)
|
2
13
|
|
3
14
|
### Patch:
|
data/man/man1/tork-driver.1
CHANGED
data/man/man1/tork-driver.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-driver.1</span></div></div><div class="container-fluid"><h1 id="tork-driver-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-driver.1</span></div></div><div class="container-fluid"><h1 id="tork-driver-1-2014-07-01-19-8-2"><a name="tork-driver-1-2014-07-01-19-8-2" href="#tork-driver-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-DRIVER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-driver - drives <a class="md2man-reference" href="../man1/tork-engine.1.html">tork-engine(1)</a> when files change</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-driver</code> [<em>OPTION</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program drives <a class="md2man-reference" href="../man1/tork-engine.1.html">tork-engine(1)</a> when <a class="md2man-reference" href="../man1/tork-herald.1.html">tork-herald(1)</a> reports files changes.</p><p>This program can be controlled remotely by multiple <a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="input"><a name="input" href="#input" class="md2man-permalink" title="permalink"></a>Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
|
11
11
|
from stdin and then performs the associated actions. For lines read from
|
12
12
|
stdin that are single-line JSON arrays, it splits each of them into an array
|
13
13
|
of words, using the same word-splitting algorithm as <a class="md2man-reference">sh(1)</a>, before processing
|
data/man/man1/tork-engine.1
CHANGED
data/man/man1/tork-engine.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-engine.1</span></div></div><div class="container-fluid"><h1 id="tork-engine-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-engine.1</span></div></div><div class="container-fluid"><h1 id="tork-engine-1-2014-07-01-19-8-2"><a name="tork-engine-1-2014-07-01-19-8-2" href="#tork-engine-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-ENGINE</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-engine - wraps <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a> with bookkeeping</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-engine</code> [<em>OPTION</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program uses <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a> to run tests and keeps track of the results.</p><p>This program can be controlled remotely by multiple <a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="input"><a name="input" href="#input" class="md2man-permalink" title="permalink"></a>Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
|
11
11
|
from stdin and then performs the associated actions. For lines read from
|
12
12
|
stdin that are single-line JSON arrays, it splits each of them into an array
|
13
13
|
of words, using the same word-splitting algorithm as <a class="md2man-reference">sh(1)</a>, before processing
|
data/man/man1/tork-herald.1
CHANGED
data/man/man1/tork-herald.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-herald.1</span></div></div><div class="container-fluid"><h1 id="tork-herald-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-herald.1</span></div></div><div class="container-fluid"><h1 id="tork-herald-1-2014-07-01-19-8-2"><a name="tork-herald-1-2014-07-01-19-8-2" href="#tork-herald-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-HERALD</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-herald - reports modified files</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-herald</code> [<em>OPTION</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program monitors the current working directory and all those below it
|
11
11
|
recursively. When any files therein are modified, it prints their relative
|
12
12
|
paths in a single-line JSON array to stdout.</p><h2 id="options"><a name="options" href="#options" class="md2man-permalink" title="permalink"></a>OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="see-also"><a name="see-also" href="#see-also" class="md2man-permalink" title="permalink"></a>SEE ALSO</h2><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>, <a class="md2man-reference" href="../man1/tork-driver.1.html">tork-driver(1)</a></p></div></body>
|
13
13
|
</html>
|
data/man/man1/tork-master.1
CHANGED
data/man/man1/tork-master.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-master.1</span></div></div><div class="container-fluid"><h1 id="tork-master-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-master.1</span></div></div><div class="container-fluid"><h1 id="tork-master-1-2014-07-01-19-8-2"><a name="tork-master-1-2014-07-01-19-8-2" href="#tork-master-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-MASTER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-master - absorbs overhead and runs tests</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-master</code> [<em>OPTION</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program absorbs your Ruby application's test execution overhead once and
|
11
11
|
simply <a class="md2man-reference">fork(3)</a>s worker processses to run your tests thereafter. As a result,
|
12
12
|
your tests run faster because they no longer spend any time absorbing the test
|
13
13
|
execution overhead: worker processes simply inherit the overhead when forked.</p><p>This program can be controlled remotely by multiple <a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="input"><a name="input" href="#input" class="md2man-permalink" title="permalink"></a>Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
|
data/man/man1/tork-notify.1
CHANGED
data/man/man1/tork-notify.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-notify.1</span></div></div><div class="container-fluid"><h1 id="tork-notify-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-notify.1</span></div></div><div class="container-fluid"><h1 id="tork-notify-1-2014-07-01-19-8-2"><a name="tork-notify-1-2014-07-01-19-8-2" href="#tork-notify-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-NOTIFY</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-notify - notifies you of test status changes</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-notify</code> [<em>OPTION</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program serves as an example of how to receive and process messages sent
|
11
11
|
by the various programs in the <a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a> suite. It notifies you when previously
|
12
12
|
passing tests fail (or vice versa) through libnotify, xmessage, or growl. If
|
13
13
|
none are available on your system, then the notification is printed to stdout.</p><h2 id="options"><a name="options" href="#options" class="md2man-permalink" title="permalink"></a>OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="exit-status"><a name="exit-status" href="#exit-status" class="md2man-permalink" title="permalink"></a>EXIT STATUS</h2><p>See <a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a>.</p><h2 id="see-also"><a name="see-also" href="#see-also" class="md2man-permalink" title="permalink"></a>SEE ALSO</h2><p><a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a>, <a class="md2man-reference" href="../man1/tork-engine.1.html">tork-engine(1)</a></p></div></body>
|
data/man/man1/tork-runner.1
CHANGED
data/man/man1/tork-runner.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-runner.1</span></div></div><div class="container-fluid"><h1 id="tork-runner-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork-runner.1</span></div></div><div class="container-fluid"><h1 id="tork-runner-1-2014-07-01-19-8-2"><a name="tork-runner-1-2014-07-01-19-8-2" href="#tork-runner-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-RUNNER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork-runner - runs tests once, non-interactively</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork-runner</code> [<em>OPTION</em>]... [<em>TEST_FILE_GLOB</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program can be thought of as a non-interactive version of <a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>. It
|
11
11
|
runs all test files that match the given <em>TEST_FILE_GLOB</em>s and then exits
|
12
12
|
with a nonzero status if any tests failed. If none are given, it runs all
|
13
13
|
test files known to <code>Tork::Driver::TEST_FILE_GLOBBERS</code> in <a class="md2man-reference" href="../man1/tork-driver.1.html">tork-driver(1)</a>.</p><h3 id="output"><a name="output" href="#output" class="md2man-permalink" title="permalink"></a>Output</h3><p>This program prints the following messages to stdout.</p><dl><dt><code>>></code> <em>failed_test_log_file</em> <code><<</code></dt><dd>This message will be followed by the content of <em>failed_test_log_file</em>.</dd></dl><dl><dt><em>T</em> <code>tested,</code> <em>P</em> <code>passed,</code> <em>F</em> <code>failed</code></dt><dd><em>T</em> test files were tested and <em>P</em> of them passed but <em>F</em> of them failed.</dd></dl><p>This program prints the following messages to stderr if it is a TTY device.</p><dl><dt><code>tork-runner:</code> <em>NN.N</em><code>% tested</code></dt><dd><em>NN.N</em> percent of test files were tested so far.</dd></dl><h2 id="options"><a name="options" href="#options" class="md2man-permalink" title="permalink"></a>OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="exit-status"><a name="exit-status" href="#exit-status" class="md2man-permalink" title="permalink"></a>EXIT STATUS</h2><dl><dt>0</dt><dd>All test files passed.</dd></dl><dl><dt>1</dt><dd>One or more test files failed.</dd></dl><h2 id="environment"><a name="environment" href="#environment" class="md2man-permalink" title="permalink"></a>ENVIRONMENT</h2><p>See <a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>.</p><h2 id="see-also"><a name="see-also" href="#see-also" class="md2man-permalink" title="permalink"></a>SEE ALSO</h2><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>, <a class="md2man-reference" href="../man1/tork-driver.1.html">tork-driver(1)</a></p></div></body>
|
data/man/man1/tork.1
CHANGED
data/man/man1/tork.1.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<link rel="stylesheet" href="../style.css"/>
|
8
8
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
9
9
|
</head>
|
10
|
-
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork.1</span></div></div><div class="container-fluid"><h1 id="tork-1-2014-
|
10
|
+
<body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/tork.1</span></div></div><div class="container-fluid"><h1 id="tork-1-2014-07-01-19-8-2"><a name="tork-1-2014-07-01-19-8-2" href="#tork-1-2014-07-01-19-8-2" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-07-01</span> <span class="md2man-source">19.8.2</span></h1><h2 id="name"><a name="name" href="#name" class="md2man-permalink" title="permalink"></a>NAME</h2><p>tork - Continuous testing tool for Ruby</p><h2 id="synopsis"><a name="synopsis" href="#synopsis" class="md2man-permalink" title="permalink"></a>SYNOPSIS</h2><p><code>tork</code> [<em>OPTION</em>]... [<em>CONFIG</em>]...</p><h2 id="description"><a name="description" href="#description" class="md2man-permalink" title="permalink"></a>DESCRIPTION</h2><p>This program can be thought of as an interactive version of <a class="md2man-reference" href="../man1/tork-runner.1.html">tork-runner(1)</a>.
|
11
11
|
It functions as a rudimentary command-line user interface to <a class="md2man-reference" href="../man1/tork-driver.1.html">tork-driver(1)</a>.</p><p>First, it applies the given <em>CONFIG</em> values, which are either (1) paths to
|
12
12
|
directories that contain configuration files or (2) names of configuration
|
13
13
|
helpers listed in the description of the <code>TORK_CONFIGS</code> environment variable.</p><p>Next, it waits for you to supply interactive commands either (1) directly on
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tork
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 19.8.
|
4
|
+
version: 19.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suraj N. Kurapati
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-07-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: md2man
|