tork 19.8.0 → 19.8.1
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/{README.md → README.markdown} +3 -2
- data/{VERSION.md → VERSION.markdown} +23 -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-remote +10 -1
- data/bin/tork-runner +1 -1
- data/lib/tork/driver.rb +5 -0
- data/lib/tork/server.rb +1 -1
- data/lib/tork/version.rb +1 -1
- data/man/man0/README.html +2 -2
- data/man/man0/{README.md → README.markdown} +3 -2
- data/man/man0/VERSION.html +89 -75
- data/man/man0/{VERSION.md → VERSION.markdown} +23 -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 +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83aa277e798bfd6dd7a876dbddcb5fac0230a5a4
|
4
|
+
data.tar.gz: efb57e81a08ae7379970228049dc61c9cf6e67c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc9cf8013d428a80b75bdadfd633a28f09270310b124cc3df6af88eb81df32eee4e7a0ceb8053c649b045a254e99f45ff80bffefc126711faa23532564346e30
|
7
|
+
data.tar.gz: c1e5c42c64dd92118f7e1f17e398a74fc057be8329d8748f944698c47c6d62160bd8f979e5958f2f48ce69914ebac262e0da87b9953a4597106c2d619bfe99fb
|
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
_______ _______
|
2
3
|
___ /___________ /__
|
3
4
|
_ __/ __ \ __/ /_/
|
@@ -5,10 +6,10 @@
|
|
5
6
|
\__/\____/_/ /_/|_\
|
6
7
|
>>>------>
|
7
8
|
|
8
|
-
*
|
9
|
-
* Manuals: <https://sunaku.github.io/tork>
|
9
|
+
* Manuals: <https://sunaku.github.io/tork/man>
|
10
10
|
* Sources: <https://github.com/sunaku/tork>
|
11
11
|
* Support: <https://github.com/sunaku/tork/issues>
|
12
|
+
* Package: <https://rubygems.org/gems/tork>
|
12
13
|
|
13
14
|
# _Test with fork_
|
14
15
|
|
@@ -1,3 +1,26 @@
|
|
1
|
+
## Version 19.8.1 (2014-06-28)
|
2
|
+
|
3
|
+
### Patch:
|
4
|
+
|
5
|
+
* tork-driver(1): sanitize the file paths reported by tork-herald(1).
|
6
|
+
|
7
|
+
This allows a user to override tork-herald(1) with their own program
|
8
|
+
that reports changed file paths in a less than ideal, but valid, way.
|
9
|
+
For example, with relative directory traversals and redundant slashes.
|
10
|
+
|
11
|
+
* tork-remote(1): deal with stale server socket files; don't just exit.
|
12
|
+
|
13
|
+
A stale socket file is left behind by a server that was prematurely
|
14
|
+
killed so it should be safe to delete it and start up a new server.
|
15
|
+
|
16
|
+
* tork/server: ensure that tork-remote(1) gets the same ARGV we did.
|
17
|
+
|
18
|
+
### Other:
|
19
|
+
|
20
|
+
* Rename `*.md` file extension to the full `*.markdown`.
|
21
|
+
|
22
|
+
* README: link to manuals index; demote package link.
|
23
|
+
|
1
24
|
## Version 19.8.0 (2014-06-23)
|
2
25
|
|
3
26
|
### Minor:
|
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-remote
CHANGED
@@ -73,7 +73,16 @@ begin
|
|
73
73
|
socket.puts output
|
74
74
|
end
|
75
75
|
end
|
76
|
-
|
76
|
+
|
77
|
+
rescue Errno::ECONNREFUSED
|
78
|
+
# the socket file is already there but it's not responding; it's probably
|
79
|
+
# a stale socket file left behind by a server that was prematurely killed
|
80
|
+
# so it should be safe to delete the socket file and start up a new server
|
81
|
+
warn "#{$0}: replacing unresponsive #{program} instance..."
|
82
|
+
File.delete address
|
83
|
+
exec program, *ARGV
|
84
|
+
|
85
|
+
rescue SystemCallError => error
|
77
86
|
warn "#{$0}: could not connect to #{program}: #{error}"
|
78
87
|
exit 1
|
79
88
|
end
|
data/bin/tork-runner
CHANGED
data/lib/tork/driver.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'set'
|
2
|
+
require 'pathname'
|
2
3
|
require 'tork/engine'
|
3
4
|
require 'tork/server'
|
4
5
|
require 'tork/config'
|
@@ -51,6 +52,10 @@ protected
|
|
51
52
|
|
52
53
|
when @herald
|
53
54
|
message.each do |changed_file|
|
55
|
+
# make sure this path works with the GREPS and GLOBBERS below
|
56
|
+
# by squashing relative directory traversal and extra slashes
|
57
|
+
changed_file = Pathname.new(changed_file).cleanpath.to_s
|
58
|
+
|
54
59
|
# reabsorb text execution overhead if overhead files changed
|
55
60
|
if overhead_file? changed_file
|
56
61
|
send @clients, [:reabsorb, changed_file]
|
data/lib/tork/server.rb
CHANGED
@@ -20,7 +20,7 @@ class Server
|
|
20
20
|
# another instance of this program is already running in the same
|
21
21
|
# directory so become a remote control for it rather than exiting
|
22
22
|
warn "#{$0}: remotely controlling existing instance..."
|
23
|
-
exec 'tork-remote', $0
|
23
|
+
exec 'tork-remote', $0, *ARGV
|
24
24
|
end
|
25
25
|
|
26
26
|
# only JSON messages are supposed to be emitted on STDOUT
|
data/lib/tork/version.rb
CHANGED
data/man/man0/README.html
CHANGED
@@ -16,10 +16,10 @@
|
|
16
16
|
</code></pre>
|
17
17
|
|
18
18
|
<ul>
|
19
|
-
<li>
|
20
|
-
<li>Manuals: <a href="https://sunaku.github.io/tork">https://sunaku.github.io/tork</a></li>
|
19
|
+
<li>Manuals: <a href="https://sunaku.github.io/tork/man">https://sunaku.github.io/tork/man</a></li>
|
21
20
|
<li>Sources: <a href="https://github.com/sunaku/tork">https://github.com/sunaku/tork</a></li>
|
22
21
|
<li>Support: <a href="https://github.com/sunaku/tork/issues">https://github.com/sunaku/tork/issues</a></li>
|
22
|
+
<li>Package: <a href="https://rubygems.org/gems/tork">https://rubygems.org/gems/tork</a></li>
|
23
23
|
</ul>
|
24
24
|
<h1 id="test-with-fork"><a name="test-with-fork" href="#test-with-fork" class="md2man-permalink" title="permalink"></a><span class="md2man-title"><em>Test</span> <span class="md2man-section">with</span> <span class="md2man-date">fork</em></span></h1><p>Tork runs your tests as they change, in parallel:</p>
|
25
25
|
<ol>
|
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
_______ _______
|
2
3
|
___ /___________ /__
|
3
4
|
_ __/ __ \ __/ /_/
|
@@ -5,10 +6,10 @@
|
|
5
6
|
\__/\____/_/ /_/|_\
|
6
7
|
>>>------>
|
7
8
|
|
8
|
-
*
|
9
|
-
* Manuals: <https://sunaku.github.io/tork>
|
9
|
+
* Manuals: <https://sunaku.github.io/tork/man>
|
10
10
|
* Sources: <https://github.com/sunaku/tork>
|
11
11
|
* Support: <https://github.com/sunaku/tork/issues>
|
12
|
+
* Package: <https://rubygems.org/gems/tork>
|
12
13
|
|
13
14
|
# _Test with fork_
|
14
15
|
|
data/man/man0/VERSION.html
CHANGED
@@ -7,13 +7,27 @@
|
|
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-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"><a name="patch" href="#patch" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
11
|
+
<ul>
|
12
|
+
<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
|
+
that reports changed file paths in a less than ideal, but valid, way.
|
14
|
+
For example, with relative directory traversals and redundant slashes.</p></li>
|
15
|
+
<li><p><a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a>: deal with stale server socket files; don't just exit.</p><p>A stale socket file is left behind by a server that was prematurely
|
16
|
+
killed so it should be safe to delete it and start up a new server.</p></li>
|
17
|
+
<li><p>tork/server: ensure that <a class="md2man-reference" href="../man1/tork-remote.1.html">tork-remote(1)</a> gets the same ARGV we did.</p></li>
|
18
|
+
</ul>
|
19
|
+
<h3 id="other"><a name="other" href="#other" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
20
|
+
<ul>
|
21
|
+
<li><p>Rename <code>*.md</code> file extension to the full <code>*.markdown</code>.</p></li>
|
22
|
+
<li><p>README: link to manuals index; demote package link.</p></li>
|
23
|
+
</ul>
|
24
|
+
<h2 id="version-19-8-0-2014-06-23"><a name="version-19-8-0-2014-06-23" href="#version-19-8-0-2014-06-23" class="md2man-permalink" title="permalink"></a>Version 19.8.0 (2014-06-23)</h2><h3 id="minor"><a name="minor" href="#minor" class="md2man-permalink" title="permalink"></a>Minor:</h3>
|
11
25
|
<ul>
|
12
26
|
<li><p>Add <code>bundler</code> configuration helper to load a bundle into <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a>.</p><p>This lets you run Tork inside any application that uses Bundler without
|
13
27
|
having to first add Tork to its <code>Gemfile</code> and then <code>bundle install</code> it.
|
14
28
|
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>
|
15
29
|
</ul>
|
16
|
-
<h3 id="patch"><a name="patch" href="#patch" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
30
|
+
<h3 id="patch-1"><a name="patch-1" href="#patch-1" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
17
31
|
<ul>
|
18
32
|
<li><p>Server: fix crash when Fixnum is sent as a message.</p>
|
19
33
|
<pre><code>lib/tork/server.rb:45:in `block (2 levels) in loop':
|
@@ -35,7 +49,7 @@ JSON::ParserError: A JSON text must at least contain two octets!
|
|
35
49
|
from /usr/bin/irb:11:in `<main>'
|
36
50
|
</code></pre></li>
|
37
51
|
</ul>
|
38
|
-
<h3 id="other"><a name="other" href="#other" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
52
|
+
<h3 id="other-1"><a name="other-1" href="#other-1" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
39
53
|
<ul>
|
40
54
|
<li>Upgrade to md2man 3.0 for improved HTML manuals.</li>
|
41
55
|
</ul>
|
@@ -44,7 +58,7 @@ JSON::ParserError: A JSON text must at least contain two octets!
|
|
44
58
|
<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
|
45
59
|
patch</a>.</p></li>
|
46
60
|
</ul>
|
47
|
-
<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-
|
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-2"><a name="patch-2" href="#patch-2" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
48
62
|
<ul>
|
49
63
|
<li><p>Rails < 3.1.0 does not have <code>connection_config()</code>.</p></li>
|
50
64
|
<li><p><code>schema_cache()</code> is only defined in Rails >= 4.</p></li>
|
@@ -53,13 +67,13 @@ patch</a>.</p></li>
|
|
53
67
|
<ul>
|
54
68
|
<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>
|
55
69
|
</ul>
|
56
|
-
<h3 id="patch-
|
70
|
+
<h3 id="patch-3"><a name="patch-3" href="#patch-3" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
57
71
|
<ul>
|
58
72
|
<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>
|
59
73
|
</ul>
|
60
74
|
<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>
|
61
75
|
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
|
62
|
-
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-
|
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-4"><a name="patch-4" href="#patch-4" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
63
77
|
<ul>
|
64
78
|
<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
|
65
79
|
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>
|
@@ -83,7 +97,7 @@ to re-use the former's resources to run your test suite non-interactively.</
|
|
83
97
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>: show help message to clients upon connecting.</p></li>
|
84
98
|
<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>
|
85
99
|
</ul>
|
86
|
-
<h3 id="patch-
|
100
|
+
<h3 id="patch-5"><a name="patch-5" href="#patch-5" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
87
101
|
<ul>
|
88
102
|
<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)
|
89
103
|
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>
|
@@ -115,7 +129,7 @@ tork-driver: /home/skurapati/.rvm/gems/ruby-1.9.3-p448/bin/tork-driver:23:in `&l
|
|
115
129
|
</ul></li>
|
116
130
|
<li><p><a class="md2man-reference" href="../man1/tork-herald.1.html">tork-herald(1)</a>: downgrade to listen 1.x gem to maintain Ruby 1.8 support.</p></li>
|
117
131
|
</ul>
|
118
|
-
<h3 id="other-
|
132
|
+
<h3 id="other-2"><a name="other-2" href="#other-2" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
119
133
|
<ul>
|
120
134
|
<li><p>GH-56: specify license in gemspec for rubygems.org.</p></li>
|
121
135
|
<li><p>Document <a class="md2man-reference">sh(1)</a> word splitting in manual pages of all tork servers.</p></li>
|
@@ -127,23 +141,23 @@ tork-driver: /home/skurapati/.rvm/gems/ruby-1.9.3-p448/bin/tork-driver:23:in `&l
|
|
127
141
|
database for Tork's parallel testing system if your test database is
|
128
142
|
SQLite3 and you are using Rails 3 or newer.</li>
|
129
143
|
</ul>
|
130
|
-
<h3 id="other-
|
144
|
+
<h3 id="other-3"><a name="other-3" href="#other-3" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
131
145
|
<ul>
|
132
146
|
<li><p>rails: remove unused capture of rescued exception</p></li>
|
133
147
|
<li><p>coverage: document the use of Ruby 1.9 hash syntax</p></li>
|
134
148
|
<li><p>rename <code>*.markdown</code> file extension to shorter <code>*.md</code></p></li>
|
135
149
|
</ul>
|
136
|
-
<h2 id="version-19-3-2-2013-10-29"><a name="version-19-3-2-2013-10-29" href="#version-19-3-2-2013-10-29" class="md2man-permalink" title="permalink"></a>Version 19.3.2 (2013-10-29)</h2><h3 id="other-
|
150
|
+
<h2 id="version-19-3-2-2013-10-29"><a name="version-19-3-2-2013-10-29" href="#version-19-3-2-2013-10-29" class="md2man-permalink" title="permalink"></a>Version 19.3.2 (2013-10-29)</h2><h3 id="other-4"><a name="other-4" href="#other-4" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
137
151
|
<ul>
|
138
152
|
<li><p>GH-55: upgrade listen & rake gem dependencies.</p><p>Thanks to Matthew Albright for reporting this issue in GH-55:
|
139
153
|
<a href="https://github.com/sunaku/tork/issues/55">https://github.com/sunaku/tork/issues/55</a></p></li>
|
140
154
|
</ul>
|
141
|
-
<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-
|
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-6"><a name="patch-6" href="#patch-6" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
142
156
|
<ul>
|
143
157
|
<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:
|
144
158
|
<a href="https://github.com/sunaku/tork/issues/53">https://github.com/sunaku/tork/issues/53</a></p></li>
|
145
159
|
</ul>
|
146
|
-
<h3 id="other-
|
160
|
+
<h3 id="other-5"><a name="other-5" href="#other-5" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
147
161
|
<ul>
|
148
162
|
<li>Upgrade to md2man 2.0.</li>
|
149
163
|
</ul>
|
@@ -153,21 +167,21 @@ SQLite3 and you are using Rails 3 or newer.</li>
|
|
153
167
|
have finished running and no more tests are queued for running.</p><p>Thanks to Jonathan Cairns for requesting this feature in GH-50:
|
154
168
|
<a href="https://github.com/sunaku/tork/issues/50">https://github.com/sunaku/tork/issues/50</a></p></li>
|
155
169
|
</ul>
|
156
|
-
<h3 id="other-
|
170
|
+
<h3 id="other-6"><a name="other-6" href="#other-6" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
157
171
|
<ul>
|
158
172
|
<li><p>add man/man0 subdir containing README and VERSION</p></li>
|
159
173
|
<li><p>README: use manpage xrefs for linking in HTML mans</p></li>
|
160
174
|
</ul>
|
161
175
|
<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
|
162
|
-
sometimes, intermittently, when test execution overhead is being reabsorbed.</p><h3 id="patch-
|
176
|
+
sometimes, intermittently, when test execution overhead is being reabsorbed.</p><h3 id="patch-7"><a name="patch-7" href="#patch-7" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
163
177
|
<ul>
|
164
178
|
<li>server: retry until the socket opens successfully</li>
|
165
179
|
</ul>
|
166
|
-
<h3 id="other-
|
180
|
+
<h3 id="other-7"><a name="other-7" href="#other-7" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
167
181
|
<ul>
|
168
182
|
<li>include md2man rake tasks in developer's rakefile</li>
|
169
183
|
</ul>
|
170
|
-
<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-
|
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-8"><a name="patch-8" href="#patch-8" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
171
185
|
<ul>
|
172
186
|
<li><p>GH-46: allow reassigning <code>$tork_*</code> variable values. Thanks to Joe
|
173
187
|
Escalante for reminding me to fix this issue.</p></li>
|
@@ -181,7 +195,7 @@ reporting it.</p></li>
|
|
181
195
|
applications that use the Devise authentication framework. Thanks to Ryan
|
182
196
|
Ahearn for this contribution.</li>
|
183
197
|
</ul>
|
184
|
-
<h3 id="patch-
|
198
|
+
<h3 id="patch-9"><a name="patch-9" href="#patch-9" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
185
199
|
<ul>
|
186
200
|
<li><p>gemspec: upgrade to <em>listen</em> 0.7.0 to fix issue #43. Thanks to Ryan
|
187
201
|
Ahearn for reporting this issue and helping debug it, and to Thibaud
|
@@ -192,23 +206,23 @@ Guillaume-Gentil for fixing this issue upstream in the <em>listen</em> library.<
|
|
192
206
|
<ul>
|
193
207
|
<li>tork-driver: don't run overhead files as test files</li>
|
194
208
|
</ul>
|
195
|
-
<h3 id="patch-
|
209
|
+
<h3 id="patch-10"><a name="patch-10" href="#patch-10" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
196
210
|
<ul>
|
197
211
|
<li><p>rails: run dependent tests when <code>app/views/*</code> change</p></li>
|
198
212
|
<li><p>Clear FactoryGirl sequences and traits on fork in the <code>factory_girl</code>
|
199
213
|
configuration helper. Thanks to Ryan Ahearn for this contribution.</p></li>
|
200
214
|
<li><p>server: fix clean up of socket files upon exit</p></li>
|
201
215
|
</ul>
|
202
|
-
<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-
|
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-11"><a name="patch-11" href="#patch-11" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
203
217
|
<ul>
|
204
218
|
<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>
|
205
219
|
</ul>
|
206
|
-
<h3 id="other-
|
220
|
+
<h3 id="other-8"><a name="other-8" href="#other-8" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
207
221
|
<ul>
|
208
222
|
<li><p>README: document RSpec 2.9.0+ autorun skipping bug</p></li>
|
209
223
|
<li><p>README: MiniTest 1.3.2+ also has autorun skip bug</p></li>
|
210
224
|
</ul>
|
211
|
-
<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-
|
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-12"><a name="patch-12" href="#patch-12" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
212
226
|
<ul>
|
213
227
|
<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.
|
214
228
|
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>
|
@@ -216,7 +230,7 @@ Do you know what happens when a test/ is run by RSpec or vice versa? :-)</p><p>T
|
|
216
230
|
their spec/spec_helper.rb file because they use the <a class="md2man-reference">rspec(1)</a> executable
|
217
231
|
to run their tests. This commit makes things Just Work for them again.</p></li>
|
218
232
|
</ul>
|
219
|
-
<h3 id="other-
|
233
|
+
<h3 id="other-9"><a name="other-9" href="#other-9" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
220
234
|
<ul>
|
221
235
|
<li><p>test whether input is JSON by actually parsing it</p></li>
|
222
236
|
<li><p>server: use Set instead of Array for faster lookup</p></li>
|
@@ -256,30 +270,30 @@ made possible by the awesome power of IO.select() and UNIX domain sockets.</p></
|
|
256
270
|
events to notify you about changes in a test file's pass/fail status.</p></li>
|
257
271
|
<li><p>typing Control-D now breaks tork programs out of <code>Tork::Server#loop()</code></p></li>
|
258
272
|
</ul>
|
259
|
-
<h3 id="patch-
|
273
|
+
<h3 id="patch-13"><a name="patch-13" href="#patch-13" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
260
274
|
<ul>
|
261
275
|
<li><a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a>: stop workers with SIGKILL when quitting</li>
|
262
276
|
</ul>
|
263
|
-
<h3 id="other-
|
277
|
+
<h3 id="other-10"><a name="other-10" href="#other-10" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
264
278
|
<ul>
|
265
279
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>: document parameters for <code>t</code> and <code>s</code> commands</p></li>
|
266
280
|
<li><p>README: add tip about rlwrap for better interactive</p></li>
|
267
281
|
<li><p>README: simplify watch command using pgrep & xargs</p></li>
|
268
282
|
<li><p>README: use standard bundle exec; no <code>--binstubs</code></p></li>
|
269
283
|
</ul>
|
270
|
-
<h2 id="version-18-2-4-2012-10-10"><a name="version-18-2-4-2012-10-10" href="#version-18-2-4-2012-10-10" class="md2man-permalink" title="permalink"></a>Version 18.2.4 (2012-10-10)</h2><h3 id="other-
|
284
|
+
<h2 id="version-18-2-4-2012-10-10"><a name="version-18-2-4-2012-10-10" href="#version-18-2-4-2012-10-10" class="md2man-permalink" title="permalink"></a>Version 18.2.4 (2012-10-10)</h2><h3 id="other-11"><a name="other-11" href="#other-11" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
271
285
|
<ul>
|
272
286
|
<li>GH-39: upgrade listen gem version to fix a bug in OSX.
|
273
287
|
Thanks to Adam Grant for reporting this issue.</li>
|
274
288
|
</ul>
|
275
|
-
<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-
|
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-14"><a name="patch-14" href="#patch-14" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
276
290
|
<ul>
|
277
291
|
<li><p>Restored support for building Tork from its gemspec under Ruby 1.8.
|
278
292
|
Thanks to Ohno Shin'ichi for reporting this issue and contributing a
|
279
293
|
preliminary fix.</p></li>
|
280
294
|
<li><p>Add resilience against failed command dispatch in <code>Tork::Server#loop()</code>.</p></li>
|
281
295
|
</ul>
|
282
|
-
<h3 id="other-
|
296
|
+
<h3 id="other-12"><a name="other-12" href="#other-12" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
283
297
|
<ul>
|
284
298
|
<li><p>It's not worth rescuing Interrupt only to exit silently.
|
285
299
|
Let the user see stack traces when they press Control-C.</p></li>
|
@@ -287,7 +301,7 @@ Let the user see stack traces when they press Control-C.</p></li>
|
|
287
301
|
replaced by reaping threads quite a few releases ago.</p></li>
|
288
302
|
<li><p>Use $0 instead of hard-coding the program name.</p></li>
|
289
303
|
</ul>
|
290
|
-
<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-
|
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-15"><a name="patch-15" href="#patch-15" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
291
305
|
<ul>
|
292
306
|
<li><p>GH-35: resume dispatched but not yet started tests.</p><p>After reabsorbing overhead, we need to resume previously dispatched test
|
293
307
|
files that have not yet finished running. This includes the waiting set
|
@@ -295,12 +309,12 @@ files that have not yet finished running. This includes the waiting set
|
|
295
309
|
and already started running). Otherwise, we encounter a bug where test
|
296
310
|
files in the waiting set can NEVER be run again!</p></li>
|
297
311
|
</ul>
|
298
|
-
<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-
|
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-16"><a name="patch-16" href="#patch-16" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
299
313
|
<ul>
|
300
314
|
<li>GH-37: switch from Guard::Listener to Listen gem.
|
301
315
|
Thanks to Jesse Cooke for reporting this issue.</li>
|
302
316
|
</ul>
|
303
|
-
<h3 id="other-
|
317
|
+
<h3 id="other-13"><a name="other-13" href="#other-13" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
304
318
|
<ul>
|
305
319
|
<li><p>gemspec: need to provide .0 suffix for ~> operator.</p></li>
|
306
320
|
<li><p>gemspec: LICENSE file contains UTF-8 author names.</p></li>
|
@@ -313,7 +327,7 @@ the "rerun<em>failed</em>tests" command and no tests have failed yet,
|
|
313
327
|
now see a warning message that explains the situation. Thanks to
|
314
328
|
NagaChaitanya Vellanki (@chaitanyav) for suggesting this change.</li>
|
315
329
|
</ul>
|
316
|
-
<h3 id="patch-
|
330
|
+
<h3 id="patch-17"><a name="patch-17" href="#patch-17" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
317
331
|
<ul>
|
318
332
|
<li><p>GH-32: Restore support for Selenium and Capybara by replacing the global
|
319
333
|
SIGCHLD handler in <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a> with individual threads, one per forked
|
@@ -338,7 +352,7 @@ that exist in or beneath the current working directory:</p>
|
|
338
352
|
<li>If you're on Ruby 1.9, please use 1.9.3 or newer because 1.9.2 is
|
339
353
|
known to segfault under RSpec and Rails. See GH-30 and GH-32.</li>
|
340
354
|
</ul>
|
341
|
-
<h3 id="patch-
|
355
|
+
<h3 id="patch-18"><a name="patch-18" href="#patch-18" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
342
356
|
<ul>
|
343
357
|
<li><p>GH-27: Cucumber features now run correctly under RSpec. Thanks to Scott
|
344
358
|
Radcliff for reporting this issue and to David Burrows for solving it!</p></li>
|
@@ -366,7 +380,7 @@ Update your <code>Tork::Config::test_event_hooks</code> accordingly.</p></li>
|
|
366
380
|
<li><p>tork-driver now recursively expands dependent test files while globbing.</p></li>
|
367
381
|
<li><p>Extracted bookkeeping stuff from tork-driver into tork-engine component.</p></li>
|
368
382
|
</ul>
|
369
|
-
<h3 id="other-
|
383
|
+
<h3 id="other-14"><a name="other-14" href="#other-14" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
370
384
|
<ul>
|
371
385
|
<li><p>tork/config: do not reabsorb when .tork.rb
|
372
386
|
changes. Since the configuration is loaded in
|
@@ -392,14 +406,14 @@ multiple globs in an array, in addition to just a single glob or <code>nil</code
|
|
392
406
|
<li><p>Added support for the MiniTest convention of naming test files as
|
393
407
|
<code>test/**/test_*.rb</code> and <code>spec/**/spec_*.rb</code>. (Jose Pablo Barrantes)</p></li>
|
394
408
|
</ul>
|
395
|
-
<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-
|
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-19"><a name="patch-19" href="#patch-19" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
396
410
|
<ul>
|
397
411
|
<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>
|
398
412
|
<li><p>tork/driver: only whole test file runs should qualify as pass.</p></li>
|
399
413
|
<li><p>tork/config/cucumber: only set ARGV for <code>*.feature</code> test files.</p></li>
|
400
414
|
<li><p>Tork::Client::Transceiver needs to stop both TX & RX loops.</p></li>
|
401
415
|
</ul>
|
402
|
-
<h3 id="other-
|
416
|
+
<h3 id="other-15"><a name="other-15" href="#other-15" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
403
417
|
<ul>
|
404
418
|
<li><p>tork/driver: store test file lists in Set, not Array.</p></li>
|
405
419
|
<li><p>HISTORY: use single-word change-set descriptions.</p></li>
|
@@ -425,7 +439,7 @@ better reflect the order of items in <a class="md2man-reference" href="../man1/t
|
|
425
439
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a> now strips all whitespace from your input, in case you pressed
|
426
440
|
spacebar or tab a few times, by accident, before entering your command.</p></li>
|
427
441
|
</ul>
|
428
|
-
<h3 id="other-
|
442
|
+
<h3 id="other-16"><a name="other-16" href="#other-16" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
429
443
|
<ul>
|
430
444
|
<li><p>tork/client: Replace write lock with queue to support SIGCHLD handler.</p><p>The SIGCHLD handler in <a class="md2man-reference" href="../man1/tork-master.1.html">tork-master(1)</a> can be triggered at any time, even
|
431
445
|
in the middle of writing to the standard output stream! Locking access
|
@@ -449,7 +463,7 @@ items to the output stream.</p></li>
|
|
449
463
|
<ul>
|
450
464
|
<li>tork/config/cucumber: only run changed scenarios in changed features.</li>
|
451
465
|
</ul>
|
452
|
-
<h3 id="other-
|
466
|
+
<h3 id="other-17"><a name="other-17" href="#other-17" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
453
467
|
<ul>
|
454
468
|
<li>README: update instructions on running Tork directly from Git clone.</li>
|
455
469
|
</ul>
|
@@ -457,7 +471,7 @@ items to the output stream.</p></li>
|
|
457
471
|
<ul>
|
458
472
|
<li>GH-19: add <code>tork cucumber</code> for running cucumber features.</li>
|
459
473
|
</ul>
|
460
|
-
<h3 id="patch-
|
474
|
+
<h3 id="patch-20"><a name="patch-20" href="#patch-20" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
461
475
|
<ul>
|
462
476
|
<li><p>tork/config/rails: support Rails 2 and don't assume AR is used. (Benjamin
|
463
477
|
Quorning)</p></li>
|
@@ -468,12 +482,12 @@ $TORK_CONFIGS should override settings from the <code>.tork.rb</code> file.</p><
|
|
468
482
|
See <a href="http://stackoverflow.com/questions/1497756">http://stackoverflow.com/questions/1497756</a>.
|
469
483
|
Also added forgotten Luke Wendling to the list.</p></li>
|
470
484
|
</ul>
|
471
|
-
<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-
|
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-21"><a name="patch-21" href="#patch-21" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
472
486
|
<ul>
|
473
487
|
<li><p>GH-21: Ruby 1.9 class_eval() is smarter than 1.8.</p></li>
|
474
488
|
<li><p>GH-20: forgot <code>require 'thread'</code> for Mutex class. (Jesse Cooke)</p></li>
|
475
489
|
</ul>
|
476
|
-
<h3 id="other-
|
490
|
+
<h3 id="other-18"><a name="other-18" href="#other-18" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
477
491
|
<ul>
|
478
492
|
<li><p><a class="md2man-reference" href="../man1/tork.1.html">tork(1)</a>: fix shadowed variable names. (Jose Pablo Barrantes)</p></li>
|
479
493
|
<li><p>GH-22: fix command to build & install gem from source.</p></li>
|
@@ -504,7 +518,7 @@ PGError: connection not open
|
|
504
518
|
<p>Thanks to Spencer Steffen for <a href="https://github.com/sunaku/tork/issues/14#issuecomment-3539470">contributing this solution</a>.</p></li>
|
505
519
|
<li><p><a class="md2man-reference">testr-driver(1)</a>: document the "over" status message in manual page.</p></li>
|
506
520
|
</ul>
|
507
|
-
<h3 id="other-
|
521
|
+
<h3 id="other-19"><a name="other-19" href="#other-19" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
508
522
|
<ul>
|
509
523
|
<li><p><a class="md2man-reference">testr-driver(1)</a>: keep same herald; only replace master.</p></li>
|
510
524
|
<li><p><a class="md2man-reference">testr(1)</a>: shorten code for loop break on quit command.</p></li>
|
@@ -519,16 +533,16 @@ PGError: connection not open
|
|
519
533
|
<li><p><a class="md2man-reference">testr(1)</a> no longer shows command menu at startup. Press ENTER to see it.</p></li>
|
520
534
|
<li><p><a class="md2man-reference">testr(1)</a> now notifies you before absorbing overhead at startup.</p></li>
|
521
535
|
</ul>
|
522
|
-
<h3 id="patch-
|
536
|
+
<h3 id="patch-22"><a name="patch-22" href="#patch-22" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
523
537
|
<ul>
|
524
538
|
<li><a class="md2man-reference">testr(1)</a> now accepts death silently when Control-C is pressed.</li>
|
525
539
|
</ul>
|
526
|
-
<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-
|
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-23"><a name="patch-23" href="#patch-23" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
527
541
|
<ul>
|
528
542
|
<li>Add support Guard v0.9.0 and newer in <code>testr-herald</code>. (Jose Pablo
|
529
543
|
Barrantes)</li>
|
530
544
|
</ul>
|
531
|
-
<h3 id="other-
|
545
|
+
<h3 id="other-20"><a name="other-20" href="#other-20" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
532
546
|
<ul>
|
533
547
|
<li>Tighten version constraints for gem dependencies to avoid future
|
534
548
|
breakages.</li>
|
@@ -537,11 +551,11 @@ breakages.</li>
|
|
537
551
|
<ul>
|
538
552
|
<li>Don't consider partial test file pass as full pass.</li>
|
539
553
|
</ul>
|
540
|
-
<h3 id="other-
|
554
|
+
<h3 id="other-21"><a name="other-21" href="#other-21" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
541
555
|
<ul>
|
542
556
|
<li>Upgrade to binman 3 for better bundler support.</li>
|
543
557
|
</ul>
|
544
|
-
<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-
|
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-24"><a name="patch-24" href="#patch-24" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
545
559
|
<ul>
|
546
560
|
<li><p>Do not fail when given test file no longer exists.</p></li>
|
547
561
|
<li><p>Make xUnit <code>--name</code> option regexp case-insensitive.</p></li>
|
@@ -550,7 +564,7 @@ see <a href="https://github.com/rspec/rspec-core/issues/445">https://github.com/
|
|
550
564
|
and <a href="https://github.com/dchelimsky/rspec/issues/44">https://github.com/dchelimsky/rspec/issues/44</a></p></li>
|
551
565
|
<li><p>Ruby 187 does not have Symbol#upcase() method.</p></li>
|
552
566
|
</ul>
|
553
|
-
<h3 id="other-
|
567
|
+
<h3 id="other-22"><a name="other-22" href="#other-22" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
554
568
|
<ul>
|
555
569
|
<li><p>README: add another SQLite3 error to known issues.
|
556
570
|
Thanks to Luke Wendling for contributing this patch.</p></li>
|
@@ -570,40 +584,40 @@ have a <code>--help</code> option which displays their UNIX manual page. Try it
|
|
570
584
|
documented in their manual pages, so you should have everything you
|
571
585
|
need to create <em>your own custom user interface to TestR</em> if you wish! :-)</p></li>
|
572
586
|
</ul>
|
573
|
-
<h3 id="patch-
|
587
|
+
<h3 id="patch-25"><a name="patch-25" href="#patch-25" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
574
588
|
<ul>
|
575
589
|
<li>SIGCHLD does not awaken main thread in Ruby 1.9.3p0.</li>
|
576
590
|
</ul>
|
577
|
-
<h3 id="other-
|
591
|
+
<h3 id="other-23"><a name="other-23" href="#other-23" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
578
592
|
<ul>
|
579
593
|
<li><p>Simplify <a class="md2man-reference">watch(1)</a> <a class="md2man-reference">ps(1)</a> process title monitoring.</p></li>
|
580
594
|
<li><p>Testr: tell user to press ENTER after command key.</p></li>
|
581
595
|
<li><p>README: add tip on loading factory_girl factories.</p></li>
|
582
596
|
</ul>
|
583
|
-
<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-
|
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-26"><a name="patch-26" href="#patch-26" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
584
598
|
<ul>
|
585
599
|
<li>Forgot to migrate the <code>testr/config/rails</code> configuration helper to use the
|
586
600
|
new TestR configuration parameter names.</li>
|
587
601
|
</ul>
|
588
|
-
<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-
|
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-27"><a name="patch-27" href="#patch-27" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
589
603
|
<ul>
|
590
604
|
<li><p>Fix updating passed/failed test files bookkeeping. Once a test file
|
591
605
|
failed, it was (incorrectly) always considered failed, even if it passed
|
592
606
|
later on.</p></li>
|
593
607
|
<li><p>Do not requeue test files that are waiting to run.</p></li>
|
594
608
|
</ul>
|
595
|
-
<h3 id="other-
|
609
|
+
<h3 id="other-24"><a name="other-24" href="#other-24" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
596
610
|
<ul>
|
597
611
|
<li>Rename <code>*.md</code> files to <code>*.markdown</code> to avoid ambiguity.</li>
|
598
612
|
</ul>
|
599
|
-
<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-
|
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-28"><a name="patch-28" href="#patch-28" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
600
614
|
<ul>
|
601
615
|
<li><p>Use blue/red for pass/fail instead of green/red to accommodate the color
|
602
616
|
blind.</p></li>
|
603
617
|
<li><p>Incorrect test name regexp was passed down to Test::Unit. This broke
|
604
618
|
focused testing, where only changed tests in a changed test file are run.</p></li>
|
605
619
|
</ul>
|
606
|
-
<h3 id="other-
|
620
|
+
<h3 id="other-25"><a name="other-25" href="#other-25" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
607
621
|
<ul>
|
608
622
|
<li>Make <code>testr-master</code> wait for killed worker processes before exiting.</li>
|
609
623
|
</ul>
|
@@ -635,14 +649,14 @@ manner using the <a href="https://github.com/guard/guard">Guard</a> library.</p>
|
|
635
649
|
<code>before_fork_hooks</code> configuration parameters.</p></li>
|
636
650
|
<li><p>Added ability to re-run passed and failed tests in the <code>testr</code> script.</p></li>
|
637
651
|
</ul>
|
638
|
-
<h3 id="other-
|
652
|
+
<h3 id="other-26"><a name="other-26" href="#other-26" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
639
653
|
<ul>
|
640
654
|
<li><p>The monolithic <code>test-loop</code> script has been replaced by several smaller
|
641
655
|
ones that communicate with each other using single-line JSON messages via
|
642
656
|
their standard input & output streams. See "Architecture" in the README.</p></li>
|
643
657
|
<li><p>Now using Bundler to manage development dependencies and gem packaging.</p></li>
|
644
658
|
</ul>
|
645
|
-
<h2 id="version-13-0-1-2011-09-21"><a name="version-13-0-1-2011-09-21" href="#version-13-0-1-2011-09-21" class="md2man-permalink" title="permalink"></a>Version 13.0.1 (2011-09-21)</h2><h3 id="other-
|
659
|
+
<h2 id="version-13-0-1-2011-09-21"><a name="version-13-0-1-2011-09-21" href="#version-13-0-1-2011-09-21" class="md2man-permalink" title="permalink"></a>Version 13.0.1 (2011-09-21)</h2><h3 id="other-27"><a name="other-27" href="#other-27" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
646
660
|
<ul>
|
647
661
|
<li><p>Forgot to include <code>test/loop/coco</code> preset in gem package.</p></li>
|
648
662
|
<li><p>Forgot to mention <code>test/loop/parallel_tests</code> preset in README.</p></li>
|
@@ -666,18 +680,18 @@ gem. (Corné Verbruggen)</p></li>
|
|
666
680
|
processes like connecting to separate databases better. (Corné
|
667
681
|
Verbruggen)</p></li>
|
668
682
|
</ul>
|
669
|
-
<h3 id="other-
|
683
|
+
<h3 id="other-28"><a name="other-28" href="#other-28" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
670
684
|
<ul>
|
671
685
|
<li><p>README: move configuration presets above options.</p></li>
|
672
686
|
<li><p>Eliminate 1 SLOC: .rb extension used in file glob.</p></li>
|
673
687
|
<li><p>Turn off executable bit on loop.rb file mode.</p></li>
|
674
688
|
<li><p>Pass child ENV directly to exec() for atomicity.</p></li>
|
675
689
|
</ul>
|
676
|
-
<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-
|
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-29"><a name="patch-29" href="#patch-29" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
677
691
|
<ul>
|
678
692
|
<li>Binary data could not be stored in environment variable values.</li>
|
679
693
|
</ul>
|
680
|
-
<h3 id="other-
|
694
|
+
<h3 id="other-29"><a name="other-29" href="#other-29" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
681
695
|
<ul>
|
682
696
|
<li>Forgot to add Jacob Helwig to the gemspec's authors list.</li>
|
683
697
|
</ul>
|
@@ -689,7 +703,7 @@ large test suites, we could end up swamping the machine running the tests
|
|
689
703
|
by forking hundreds of test files at once. (Jacob Helwig)</p></li>
|
690
704
|
<li><p>Rails: add matcher for <code>test/factories/*_factory.rb</code>.</p></li>
|
691
705
|
</ul>
|
692
|
-
<h3 id="other-
|
706
|
+
<h3 id="other-30"><a name="other-30" href="#other-30" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
693
707
|
<ul>
|
694
708
|
<li><p>ENV returns a Hash with duplicate/frozen keys/values. (Brian D. Burns)</p></li>
|
695
709
|
<li><p>Use Marshal to propagate resume_files to reabsorb.</p></li>
|
@@ -708,7 +722,7 @@ library</a>.</p></li>
|
|
708
722
|
<li>Add <code>Test::Loop.delay_per_iteration</code> parameter to control the number of
|
709
723
|
seconds (or fractions thereof) to sleep in between test-loop iterations.</li>
|
710
724
|
</ul>
|
711
|
-
<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-
|
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-30"><a name="patch-30" href="#patch-30" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
712
726
|
<ul>
|
713
727
|
<li><p>Reabsorb overhead when user's configuration file changes. (Brian D. Burns
|
714
728
|
and Daniel Pittman)</p></li>
|
@@ -716,7 +730,7 @@ and Daniel Pittman)</p></li>
|
|
716
730
|
not necessary! <a href="https://github.com/sunaku/test-loop/issues/5">This issue</a>
|
717
731
|
was solved by upgrading to the newer 2.6.38.4-1 Linux kernel on my system.</p></li>
|
718
732
|
</ul>
|
719
|
-
<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-
|
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-31"><a name="patch-31" href="#patch-31" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
720
734
|
<ul>
|
721
735
|
<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
|
722
736
|
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
|
@@ -749,13 +763,13 @@ that would also stop you from doing clever things." ~Doug Gwyn</p></blockqu
|
|
749
763
|
Many thanks to Brian D. Burns and Daniel Pittman for helping solve <a href="https://github.com/sunaku/test-loop/issues/5">this
|
750
764
|
issue</a>.</p></li>
|
751
765
|
</ul>
|
752
|
-
<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-
|
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-32"><a name="patch-32" href="#patch-32" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
753
767
|
<ul>
|
754
768
|
<li><p>Consider DB schema dump file as overhead in Rails.</p></li>
|
755
769
|
<li><p>Do not consider test factories as overhead in Rails.</p></li>
|
756
770
|
<li><p>Run test files when test factory files change in Rails.</p></li>
|
757
771
|
</ul>
|
758
|
-
<h3 id="other-
|
772
|
+
<h3 id="other-31"><a name="other-31" href="#other-31" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
759
773
|
<ul>
|
760
774
|
<li><p>Detach worker from master's terminal device sooner.</p></li>
|
761
775
|
<li><p>All required signals must be present in irb check.</p></li>
|
@@ -763,12 +777,12 @@ issue</a>.</p></li>
|
|
763
777
|
<li><p>Retain <a class="md2man-reference">ps(1)</a> column header in watch command output.</p></li>
|
764
778
|
<li><p>Begin parameter descriptions with the noun itself.</p></li>
|
765
779
|
</ul>
|
766
|
-
<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-
|
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-33"><a name="patch-33" href="#patch-33" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
767
781
|
<ul>
|
768
782
|
<li><p>Restore support for Ruby 1.8.7.</p></li>
|
769
783
|
<li><p>Allow user's test execution overhead to fork.</p></li>
|
770
784
|
</ul>
|
771
|
-
<h3 id="other-
|
785
|
+
<h3 id="other-32"><a name="other-32" href="#other-32" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
772
786
|
<ul>
|
773
787
|
<li><p>Freeze master's ENV properly; keep resume key.</p></li>
|
774
788
|
<li><p>Remove completed test from running list sooner.</p></li>
|
@@ -784,7 +798,7 @@ your models are already loaded & cached by the Rails environment.</p></li>
|
|
784
798
|
<li><p>Your tests can no longer read from the user's terminal (master's STDIN);
|
785
799
|
instead they will read from an empty stream (the reading end of IO.popen).</p></li>
|
786
800
|
</ul>
|
787
|
-
<h3 id="patch-
|
801
|
+
<h3 id="patch-34"><a name="patch-34" href="#patch-34" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
788
802
|
<ul>
|
789
803
|
<li><p>Replace threads with SIGCHLD for reporting test results.</p><p>This fixes deadlock errors that sometimes occurred when the user's chosen
|
790
804
|
test library tried to print something to STDOUT/STDERR (even though those
|
@@ -792,7 +806,7 @@ streams were redirected to a log file in the worker process).</p><p>Thanks to Br
|
|
792
806
|
threads to monitor workers was the culprit behind the deadlocks errors.</p></li>
|
793
807
|
<li><p>Ctrl-C did not raise Interrupt in my Rails 3 test suite.</p></li>
|
794
808
|
</ul>
|
795
|
-
<h3 id="other-
|
809
|
+
<h3 id="other-33"><a name="other-33" href="#other-33" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
796
810
|
<ul>
|
797
811
|
<li><p>Ensure a clean ENV when reabsorbing overhead. Environment variables set
|
798
812
|
by your test execution overhead are not propagated to subsequent
|
@@ -808,7 +822,7 @@ reabsorptions. (Brian D. Burns)</p></li>
|
|
808
822
|
<li><p>Add tip about annihilating test-loop processes.</p></li>
|
809
823
|
<li><p>Fix markdown formatting.</p></li>
|
810
824
|
</ul>
|
811
|
-
<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-
|
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-35"><a name="patch-35" href="#patch-35" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
812
826
|
<ul>
|
813
827
|
<li>Only attempt to define Railtie if the current Rails version supports it.</li>
|
814
828
|
</ul>
|
@@ -823,7 +837,7 @@ automatically if your test execution overhead includes Ruby on Rails.</li>
|
|
823
837
|
<code>config.cache_classes = false</code> for your test environment. (Brian D.
|
824
838
|
Burns)</li>
|
825
839
|
</ul>
|
826
|
-
<h3 id="patch-
|
840
|
+
<h3 id="patch-36"><a name="patch-36" href="#patch-36" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
827
841
|
<ul>
|
828
842
|
<li><p>Avoid deadlock errors when printing output from Test::Unit and MiniTest.
|
829
843
|
(Brian D. Burns)</p>
|
@@ -833,7 +847,7 @@ Burns)</li>
|
|
833
847
|
Do not treat it as a failure by printing the log file.</p></li>
|
834
848
|
<li><p>Ignore SIGINT in workers; only master must honor it.</p></li>
|
835
849
|
</ul>
|
836
|
-
<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-
|
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-37"><a name="patch-37" href="#patch-37" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
837
851
|
<ul>
|
838
852
|
<li><p>Workers must ignore SIGTSTP, otherwise master waits forever before
|
839
853
|
exiting.</p></li>
|
@@ -858,13 +872,13 @@ the following:</p>
|
|
858
872
|
<pre><code>watch 'ps xf | grep test-loop | sed 1,3d'
|
859
873
|
</code></pre></li>
|
860
874
|
</ul>
|
861
|
-
<h3 id="patch-
|
875
|
+
<h3 id="patch-38"><a name="patch-38" href="#patch-38" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
862
876
|
<ul>
|
863
877
|
<li>Skip <code>at_exit()</code> when exiting master process. This prevents an empty test
|
864
878
|
from being run when exiting the loop after having processed a test/spec
|
865
879
|
helper that loads the Test::Unit library. (Brian D. Burns)</li>
|
866
880
|
</ul>
|
867
|
-
<h3 id="other-
|
881
|
+
<h3 id="other-34"><a name="other-34" href="#other-34" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
868
882
|
<ul>
|
869
883
|
<li><p>Use throw/catch to break loop instead of raising SystemExit exception.</p></li>
|
870
884
|
<li><p>Trap SIGTERM with IGNORE/DEFAULT instead of using a closure in master.</p></li>
|
@@ -884,7 +898,7 @@ system resources.</p></li>
|
|
884
898
|
<li><p>Use ANSI clear line command to erase control-key combinations outputted by
|
885
899
|
shells such as BASH and ZSH in test-loop's output. (Brian D. Burns)</p></li>
|
886
900
|
</ul>
|
887
|
-
<h3 id="patch-
|
901
|
+
<h3 id="patch-39"><a name="patch-39" href="#patch-39" class="md2man-permalink" title="permalink"></a>Patch:</h3>
|
888
902
|
<ul>
|
889
903
|
<li><p><code>@last_ran_at</code> was being set during every iteration of the loop. This is
|
890
904
|
problematic when Ruby's <code>Time.now</code> is more precise than your filesystem's
|
@@ -896,7 +910,7 @@ running waitall(), instead of sending SIGKILL to the entire process group.
|
|
896
910
|
As a result, test-loop no longer exits with a non-zero status upon SIGINT.</p></li>
|
897
911
|
<li><p>Remove 'ansi' gem dependency. (Brian D. Burns)</p></li>
|
898
912
|
</ul>
|
899
|
-
<h3 id="other-
|
913
|
+
<h3 id="other-35"><a name="other-35" href="#other-35" class="md2man-permalink" title="permalink"></a>Other:</h3>
|
900
914
|
<ul>
|
901
915
|
<li><p>Add tip on deleting logs for passing tests. (Brian D. Burns)</p></li>
|
902
916
|
<li><p>Add tip on monitoring test processes with <a class="md2man-reference">watch(1)</a> in README.</p></li>
|
@@ -1,3 +1,26 @@
|
|
1
|
+
## Version 19.8.1 (2014-06-28)
|
2
|
+
|
3
|
+
### Patch:
|
4
|
+
|
5
|
+
* tork-driver(1): sanitize the file paths reported by tork-herald(1).
|
6
|
+
|
7
|
+
This allows a user to override tork-herald(1) with their own program
|
8
|
+
that reports changed file paths in a less than ideal, but valid, way.
|
9
|
+
For example, with relative directory traversals and redundant slashes.
|
10
|
+
|
11
|
+
* tork-remote(1): deal with stale server socket files; don't just exit.
|
12
|
+
|
13
|
+
A stale socket file is left behind by a server that was prematurely
|
14
|
+
killed so it should be safe to delete it and start up a new server.
|
15
|
+
|
16
|
+
* tork/server: ensure that tork-remote(1) gets the same ARGV we did.
|
17
|
+
|
18
|
+
### Other:
|
19
|
+
|
20
|
+
* Rename `*.md` file extension to the full `*.markdown`.
|
21
|
+
|
22
|
+
* README: link to manuals index; demote package link.
|
23
|
+
|
1
24
|
## Version 19.8.0 (2014-06-23)
|
2
25
|
|
3
26
|
### Minor:
|
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-06-
|
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-06-28-19-8-1"><a name="tork-driver-1-2014-06-28-19-8-1" href="#tork-driver-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-DRIVER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-engine-1-2014-06-28-19-8-1" href="#tork-engine-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-ENGINE</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-herald-1-2014-06-28-19-8-1" href="#tork-herald-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-HERALD</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-master-1-2014-06-28-19-8-1" href="#tork-master-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-MASTER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-notify-1-2014-06-28-19-8-1" href="#tork-notify-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-NOTIFY</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-runner-1-2014-06-28-19-8-1" href="#tork-runner-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK-RUNNER</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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-06-
|
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-06-28-19-8-1"><a name="tork-1-2014-06-28-19-8-1" href="#tork-1-2014-06-28-19-8-1" class="md2man-permalink" title="permalink"></a><span class="md2man-title">TORK</span> <span class="md2man-section">1</span> <span class="md2man-date">2014-06-28</span> <span class="md2man-source">19.8.1</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.1
|
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-06-
|
12
|
+
date: 2014-06-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: md2man
|
@@ -114,9 +114,9 @@ files:
|
|
114
114
|
- ".gitignore"
|
115
115
|
- Gemfile
|
116
116
|
- LICENSE
|
117
|
-
- README.
|
117
|
+
- README.markdown
|
118
118
|
- Rakefile
|
119
|
-
- VERSION.
|
119
|
+
- VERSION.markdown
|
120
120
|
- bin/tork
|
121
121
|
- bin/tork-driver
|
122
122
|
- bin/tork-engine
|
@@ -157,9 +157,9 @@ files:
|
|
157
157
|
- lib/tork/version.rb
|
158
158
|
- man/index.html
|
159
159
|
- man/man0/README.html
|
160
|
-
- man/man0/README.
|
160
|
+
- man/man0/README.markdown
|
161
161
|
- man/man0/VERSION.html
|
162
|
-
- man/man0/VERSION.
|
162
|
+
- man/man0/VERSION.markdown
|
163
163
|
- man/man1/tork-driver.1
|
164
164
|
- man/man1/tork-driver.1.html
|
165
165
|
- man/man1/tork-engine.1
|