tork 19.6.0 → 19.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b86ca99e3aa4b14fe6a3e2d8e6eede88534c4138
4
- data.tar.gz: b47381b7ea4e8c1f57bba31b134c8bcfc82595ba
3
+ metadata.gz: 4822fa5f27771461228a1e1429adb74ca492e751
4
+ data.tar.gz: 1464e01d84e6dcdfc8d1990f442275aca8cd4727
5
5
  SHA512:
6
- metadata.gz: 85727483ee52ab7da91a4ef0726653e1f5cc35b510d9abac1f77b5d544fae273a148a82f3fa2d6c081083e7e9f9d211b4c5809e299812fec708ffdaf8621dd65
7
- data.tar.gz: 1c5016fa97e114884098f1d780bd18440f00144261a8bcc90507b7c1b540285b250444e32446c3ac6093c1871afcc3e848966578979b92d8f43f5a48cc16e44c
6
+ metadata.gz: 2ab0c2bc53d7cf3090134e9e2320acfbbae78b5780d8612c366319c8851be770e4249ae02ae574f13eb60ab8f0ac641d9fefbe0ece31413f98c1af44a2533d17
7
+ data.tar.gz: 549cd7d0f5328277eff594e2615eca427e48feadd41209fde010d3072cd96e0fac19ef95508bbf4fc6e6f07a5a6e579ea4a80c7acf4b447f5d70611df55d6e6c
data/VERSION.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Version 19.6.1 (2014-03-04)
2
+
3
+ This release improves support for old Rails versions.
4
+
5
+ ### Patch:
6
+
7
+ * Rails < 3.1.0 does not have `connection_config()`.
8
+
9
+ * `schema_cache()` is only defined in Rails >= 4.
10
+
1
11
  ## Version 19.6.0 (2014-01-02)
2
12
 
3
13
  This release improves tork-runner(1) responsiveness and fixes tork-engine(1).
data/bin/tork CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK 1 2014-01-02 19.6.0
4
+ # TORK 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-DRIVER 1 2014-01-02 19.6.0
4
+ # TORK-DRIVER 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-ENGINE 1 2014-01-02 19.6.0
4
+ # TORK-ENGINE 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-HERALD 1 2014-01-02 19.6.0
4
+ # TORK-HERALD 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-MASTER 1 2014-01-02 19.6.0
4
+ # TORK-MASTER 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-NOTIFY 1 2014-01-02 19.6.0
4
+ # TORK-NOTIFY 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # TORK-RUNNER 1 2014-01-02 19.6.0
4
+ # TORK-RUNNER 1 2014-03-04 19.6.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -9,7 +9,12 @@ begin
9
9
  # if using an sqlite3 database for the test environment, make
10
10
  # it an in-memory database to support parallel test execution
11
11
  config.after_initialize do
12
- current = ActiveRecord::Base.connection_config
12
+ current =
13
+ if ActiveRecord::Base.respond_to? :connection_config
14
+ ActiveRecord::Base.connection_config
15
+ else # for Rails < 3.1.0
16
+ ActiveRecord::Base.connection.instance_variable_get :@config
17
+ end
13
18
  memory = {:adapter => 'sqlite3', :database => ':memory:'}
14
19
 
15
20
  if current[:adapter] == memory[:adapter]
@@ -25,7 +30,9 @@ begin
25
30
 
26
31
  # apply application schema to in-memory database
27
32
  silence_stream(STDOUT) { load schema }
28
- ActiveRecord::Base.connection.schema_cache.clear!
33
+ if ActiveRecord::Base.connection.respond_to? :schema_cache
34
+ ActiveRecord::Base.connection.schema_cache.clear! # for Rails >= 4
35
+ end
29
36
 
30
37
  # load any seed data into the in-memory database
31
38
  if File.exist? seeds = "#{Rails.root}/db/seeds.rb"
@@ -1,3 +1,3 @@
1
1
  module Tork
2
- VERSION = "19.6.0"
2
+ VERSION = "19.6.1"
3
3
  end
@@ -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-6-0-2014-01-02">Version 19.6.0 (2014-01-02)</h2><p>This release improves <a class="md2man-xref" href="../man1/tork-runner.1.html">tork-runner(1)</a> responsiveness and fixes <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a>.</p><h3 id="Minor">Minor:</h3>
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-6-1-2014-03-04">Version 19.6.1 (2014-03-04)</h2><p>This release improves support for old Rails versions.</p><h3 id="Patch">Patch:</h3>
11
+ <ul>
12
+ <li><p>Rails &lt; 3.1.0 does not have <code>connection_config()</code>.</p></li>
13
+ <li><p><code>schema_cache()</code> is only defined in Rails &gt;= 4.</p></li>
14
+ </ul>
15
+ <h2 id="Version-19-6-0-2014-01-02">Version 19.6.0 (2014-01-02)</h2><p>This release improves <a class="md2man-xref" href="../man1/tork-runner.1.html">tork-runner(1)</a> responsiveness and fixes <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a>.</p><h3 id="Minor">Minor:</h3>
11
16
  <ul>
12
17
  <li><a class="md2man-xref" href="../man1/tork-runner.1.html">tork-runner(1)</a> now prints the percentage of completed tests to stderr.</li>
13
18
  </ul>
@@ -1,3 +1,13 @@
1
+ ## Version 19.6.1 (2014-03-04)
2
+
3
+ This release improves support for old Rails versions.
4
+
5
+ ### Patch:
6
+
7
+ * Rails < 3.1.0 does not have `connection_config()`.
8
+
9
+ * `schema_cache()` is only defined in Rails >= 4.
10
+
1
11
  ## Version 19.6.0 (2014-01-02)
2
12
 
3
13
  This release improves tork-runner(1) responsiveness and fixes tork-engine(1).
@@ -1,4 +1,4 @@
1
- .TH TORK\-DRIVER 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-DRIVER 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-driver \- drives
@@ -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-01-02-19-6-0">TORK-DRIVER 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-driver - drives <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> when files change</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-driver</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program drives <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> when <a class="md2man-xref" 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-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="Input">Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
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-03-04-19-6-1">TORK-DRIVER 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-driver - drives <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> when files change</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-driver</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program drives <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> when <a class="md2man-xref" 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-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="Input">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-xref">sh(1)</a>, before processing
@@ -1,4 +1,4 @@
1
- .TH TORK\-ENGINE 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-ENGINE 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-engine \- wraps
@@ -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-01-02-19-6-0">TORK-ENGINE 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-engine - wraps <a class="md2man-xref" href="../man1/tork-master.1.html">tork-master(1)</a> with bookkeeping</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-engine</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program uses <a class="md2man-xref" 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-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="Input">Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
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-03-04-19-6-1">TORK-ENGINE 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-engine - wraps <a class="md2man-xref" href="../man1/tork-master.1.html">tork-master(1)</a> with bookkeeping</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-engine</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program uses <a class="md2man-xref" 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-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="Input">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-xref">sh(1)</a>, before processing
@@ -1,4 +1,4 @@
1
- .TH TORK\-HERALD 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-HERALD 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-herald \- reports modified files
@@ -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-01-02-19-6-0">TORK-HERALD 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-herald - reports modified files</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-herald</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program monitors the current working directory and all those below it
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-03-04-19-6-1">TORK-HERALD 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-herald - reports modified files</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-herald</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">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">OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="SEE-ALSO">SEE ALSO</h2><p><a class="md2man-xref" href="../man1/tork.1.html">tork(1)</a>, <a class="md2man-xref" href="../man1/tork-driver.1.html">tork-driver(1)</a></p></div></body>
13
13
  </html>
@@ -1,4 +1,4 @@
1
- .TH TORK\-MASTER 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-MASTER 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-master \- absorbs overhead and runs tests
@@ -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-01-02-19-6-0">TORK-MASTER 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-master - absorbs overhead and runs tests</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-master</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program absorbs your Ruby application&#39;s test execution overhead once and
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-03-04-19-6-1">TORK-MASTER 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-master - absorbs overhead and runs tests</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-master</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program absorbs your Ruby application&#39;s test execution overhead once and
11
11
  simply <a class="md2man-xref">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-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a> instances.</p><h3 id="Input">Input</h3><p>This program reads the following commands, which are single-line JSON arrays,
@@ -1,4 +1,4 @@
1
- .TH TORK\-NOTIFY 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-NOTIFY 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-notify \- notifies you of test status changes
@@ -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-01-02-19-6-0">TORK-NOTIFY 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-notify - notifies you of test status changes</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-notify</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program serves as an example of how to receive and process messages sent
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-03-04-19-6-1">TORK-NOTIFY 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-notify - notifies you of test status changes</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-notify</code> [<em>OPTION</em>]...</p><h2 id="DESCRIPTION">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-xref" 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">OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="EXIT-STATUS">EXIT STATUS</h2><p>See <a class="md2man-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a>.</p><h2 id="SEE-ALSO">SEE ALSO</h2><p><a class="md2man-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a>, <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a></p></div></body>
@@ -1,4 +1,4 @@
1
- .TH TORK\-RUNNER 1 2014\-01\-02 19.6.0
1
+ .TH TORK\-RUNNER 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork\-runner \- runs tests once, non\-interactively
@@ -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-01-02-19-6-0">TORK-RUNNER 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork-runner - runs tests once, non-interactively</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-runner</code> [<em>OPTION</em>]... [<em>TEST_FILE_GLOB</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program can be thought of as a non-interactive version of <a class="md2man-xref" href="../man1/tork.1.html">tork(1)</a>. It
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-03-04-19-6-1">TORK-RUNNER 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork-runner - runs tests once, non-interactively</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork-runner</code> [<em>OPTION</em>]... [<em>TEST_FILE_GLOB</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program can be thought of as a non-interactive version of <a class="md2man-xref" 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-xref" href="../man1/tork-driver.1.html">tork-driver(1)</a>.</p><h3 id="Output">Output</h3><p>This program prints the following messages to stdout.</p><dl><dt><code>&gt;&gt;</code> <em>failed_test_log_file</em> <code>&lt;&lt;</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">OPTIONS</h2><dl><dt><code>-h</code>, <code>--help</code></dt><dd>Show this help manual.</dd></dl><h2 id="EXIT-STATUS">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">ENVIRONMENT</h2><p>See <a class="md2man-xref" href="../man1/tork.1.html">tork(1)</a>.</p><h2 id="SEE-ALSO">SEE ALSO</h2><p><a class="md2man-xref" href="../man1/tork.1.html">tork(1)</a>, <a class="md2man-xref" href="../man1/tork-driver.1.html">tork-driver(1)</a></p></div></body>
@@ -1,4 +1,4 @@
1
- .TH TORK 1 2014\-01\-02 19.6.0
1
+ .TH TORK 1 2014\-03\-04 19.6.1
2
2
  .SH NAME
3
3
  .PP
4
4
  tork \- Continuous testing tool for Ruby
@@ -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-01-02-19-6-0">TORK 1 2014-01-02 19.6.0</h1><h2 id="NAME">NAME</h2><p>tork - Continuous testing tool for Ruby</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork</code> [<em>OPTION</em>]... [<em>CONFIG</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program can be thought of as an interactive version of <a class="md2man-xref" href="../man1/tork-runner.1.html">tork-runner(1)</a>.
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-03-04-19-6-1">TORK 1 2014-03-04 19.6.1</h1><h2 id="NAME">NAME</h2><p>tork - Continuous testing tool for Ruby</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>tork</code> [<em>OPTION</em>]... [<em>CONFIG</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program can be thought of as an interactive version of <a class="md2man-xref" 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-xref" 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.6.0
4
+ version: 19.6.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-01-03 00:00:00.000000000 Z
12
+ date: 2014-03-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: md2man