tork 19.3.2 → 19.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{README.markdown → README.md} +2 -2
- data/{VERSION.markdown → VERSION.md} +16 -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/lib/tork/config/coverage/master.rb +5 -0
- data/lib/tork/config/rails/master.rb +29 -1
- data/lib/tork/version.rb +1 -1
- data/man/man0/README.html +2 -2
- data/man/man0/{README.markdown → README.md} +2 -2
- data/man/man0/VERSION.html +13 -1
- data/man/man0/{VERSION.markdown → VERSION.md} +16 -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.1 +1 -1
- data/man/man1/tork.1.html +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfb4c05d4dac8d00d84ddc1c9848ce91876ea00e
|
4
|
+
data.tar.gz: 05db674c12f919906b22d368d1263514a873b67f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e0461526794a8f38147e14a817c403cba6b4c6c9e49eb463dfb4d4f27756ecf052dcc8a210cac1ca8d1e5b8fe7e2e5443286c8a7ad0b54e5fec6ee5cc6719f5
|
7
|
+
data.tar.gz: d947547d283208913d657c9ae3f46cbc24986377a2c6cc95f3fe5919c5c0cf371139bbc5096f5c44f30cc902d64ba29b457d09e5b7f1d6c1e8d78f47ea72c01f
|
@@ -161,8 +161,8 @@ For older Rails, make sure your `config/environments/test.rb` file contains:
|
|
161
161
|
|
162
162
|
config.cache_classes = false
|
163
163
|
|
164
|
-
|
165
|
-
adapter][memory_test_fix]. Otherwise, you *might* face these errors:
|
164
|
+
For older Rails, to use SQLite3 as your test database, install the [in-memory
|
165
|
+
database adapter][memory_test_fix]. Otherwise, you *might* face these errors:
|
166
166
|
|
167
167
|
> SQLite3::BusyException: database is locked
|
168
168
|
|
@@ -1,3 +1,19 @@
|
|
1
|
+
## Version 19.4.0 (2013-11-25)
|
2
|
+
|
3
|
+
Minor:
|
4
|
+
|
5
|
+
* The "rails" configuration helper now automatically sets up your test
|
6
|
+
database for Tork's parallel testing system if your test database is
|
7
|
+
SQLite3 and you are using Rails 3 or newer.
|
8
|
+
|
9
|
+
Other:
|
10
|
+
|
11
|
+
* rails: remove unused capture of rescued exception
|
12
|
+
|
13
|
+
* coverage: document the use of Ruby 1.9 hash syntax
|
14
|
+
|
15
|
+
* rename `*.markdown` file extension to shorter `*.md`
|
16
|
+
|
1
17
|
## Version 19.3.2 (2013-10-29)
|
2
18
|
|
3
19
|
Other:
|
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
@@ -19,6 +19,11 @@ at_exit do
|
|
19
19
|
end
|
20
20
|
|
21
21
|
grade = ((nsloc - holes.length) / nsloc.to_f) * 100
|
22
|
+
#
|
23
|
+
# NOTE: It's OK to use Ruby 1.9 hash syntax here because
|
24
|
+
# the coverage library does not exist for Ruby 1.8
|
25
|
+
# so we'd actually never get this far in Ruby 1.8!
|
26
|
+
#
|
22
27
|
report[file] = { grade: grade, nsloc: nsloc, holes: holes }
|
23
28
|
end
|
24
29
|
end
|
@@ -5,8 +5,36 @@ begin
|
|
5
5
|
app.config.cache_classes = false
|
6
6
|
ActiveSupport::Dependencies.mechanism = :load
|
7
7
|
end
|
8
|
+
|
9
|
+
# if using an sqlite3 database for the test environment, make
|
10
|
+
# it an in-memory database to support parallel test execution
|
11
|
+
config.after_initialize do
|
12
|
+
current = ActiveRecord::Base.connection_config
|
13
|
+
memory = {:adapter => 'sqlite3', :database => ':memory:'}
|
14
|
+
|
15
|
+
if current[:adapter] == memory[:adapter]
|
16
|
+
# ensure that the sqlite3 database is in-memory
|
17
|
+
unless current[:database] == memory[:database]
|
18
|
+
ActiveRecord::Base.establish_connection memory
|
19
|
+
end
|
20
|
+
|
21
|
+
# create application schema if it does not exist
|
22
|
+
unless File.exist? schema = "#{Rails.root}/db/schema.rb"
|
23
|
+
system 'rake', '--trace', 'db:schema:dump', 'RAILS_ENV=development'
|
24
|
+
end
|
25
|
+
|
26
|
+
# apply application schema to in-memory database
|
27
|
+
silence_stream(STDOUT) { load schema }
|
28
|
+
ActiveRecord::Base.connection.schema_cache.clear!
|
29
|
+
|
30
|
+
# load any seed data into the in-memory database
|
31
|
+
if File.exist? seeds = "#{Rails.root}/db/seeds.rb"
|
32
|
+
load seeds
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
8
36
|
end
|
9
|
-
rescue LoadError
|
37
|
+
rescue LoadError
|
10
38
|
warn "tork/config/rails/master: could not set configuration using railties;\n"\
|
11
39
|
"you will have to add the following to your test environment manually:\n\t"\
|
12
40
|
'config.cache_classes = false'
|
data/lib/tork/version.rb
CHANGED
data/man/man0/README.html
CHANGED
@@ -125,8 +125,8 @@ or <code>spec</code> helpers. Otherwise your test helper will load Rails <em>be
|
|
125
125
|
specified <code>rails</code> configuration helper has a chance to disable class caching!</p><p>For older Rails, make sure your <code>config/environments/test.rb</code> file contains:</p>
|
126
126
|
<pre><code>config.cache_classes = false
|
127
127
|
</code></pre>
|
128
|
-
<p>
|
129
|
-
adapter</a>. Otherwise, you <em>might</em> face these errors:</p>
|
128
|
+
<p>For older Rails, to use SQLite3 as your test database, install the <a href="https://github.com/stepahn/memory_test_fix">in-memory
|
129
|
+
database adapter</a>. Otherwise, you <em>might</em> face these errors:</p>
|
130
130
|
<blockquote>
|
131
131
|
<p>SQLite3::BusyException: database is locked</p><p>cannot start a transaction within a transaction</p></blockquote>
|
132
132
|
<h2 id="Configuration">Configuration</h2><p>Tork looks for a configuration directory named <code>.tork/</code> inside its working
|
@@ -161,8 +161,8 @@ For older Rails, make sure your `config/environments/test.rb` file contains:
|
|
161
161
|
|
162
162
|
config.cache_classes = false
|
163
163
|
|
164
|
-
|
165
|
-
adapter][memory_test_fix]. Otherwise, you *might* face these errors:
|
164
|
+
For older Rails, to use SQLite3 as your test database, install the [in-memory
|
165
|
+
database adapter][memory_test_fix]. Otherwise, you *might* face these errors:
|
166
166
|
|
167
167
|
> SQLite3::BusyException: database is locked
|
168
168
|
|
data/man/man0/VERSION.html
CHANGED
@@ -7,7 +7,19 @@
|
|
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-
|
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-4-0-2013-11-25">Version 19.4.0 (2013-11-25)</h2><p>Minor:</p>
|
11
|
+
<ul>
|
12
|
+
<li>The "rails" configuration helper now automatically sets up your test
|
13
|
+
database for Tork's parallel testing system if your test database is
|
14
|
+
SQLite3 and you are using Rails 3 or newer.</li>
|
15
|
+
</ul>
|
16
|
+
<p>Other:</p>
|
17
|
+
<ul>
|
18
|
+
<li><p>rails: remove unused capture of rescued exception</p></li>
|
19
|
+
<li><p>coverage: document the use of Ruby 1.9 hash syntax</p></li>
|
20
|
+
<li><p>rename <code>*.markdown</code> file extension to shorter <code>*.md</code></p></li>
|
21
|
+
</ul>
|
22
|
+
<h2 id="Version-19-3-2-2013-10-29">Version 19.3.2 (2013-10-29)</h2><p>Other:</p>
|
11
23
|
<ul>
|
12
24
|
<li><p>GH-55: upgrade listen & rake gem dependencies.</p><p>Thanks to Matthew Albright for reporting this issue in GH-55:
|
13
25
|
<a href="https://github.com/sunaku/tork/issues/55">https://github.com/sunaku/tork/issues/55</a></p></li>
|
@@ -1,3 +1,19 @@
|
|
1
|
+
## Version 19.4.0 (2013-11-25)
|
2
|
+
|
3
|
+
Minor:
|
4
|
+
|
5
|
+
* The "rails" configuration helper now automatically sets up your test
|
6
|
+
database for Tork's parallel testing system if your test database is
|
7
|
+
SQLite3 and you are using Rails 3 or newer.
|
8
|
+
|
9
|
+
Other:
|
10
|
+
|
11
|
+
* rails: remove unused capture of rescued exception
|
12
|
+
|
13
|
+
* coverage: document the use of Ruby 1.9 hash syntax
|
14
|
+
|
15
|
+
* rename `*.markdown` file extension to shorter `*.md`
|
16
|
+
|
1
17
|
## Version 19.3.2 (2013-10-29)
|
2
18
|
|
3
19
|
Other:
|
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-2013-
|
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-2013-11-25-19-4-0">TORK-DRIVER 1 2013-11-25 19.4.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,
|
11
11
|
from stdin and performs the actions described respectively.</p><dl><dt><code>["run_all_test_files"]</code></dt><dd>Runs all test files found within and beneath the current working directory.</dd></dl><dl><dt><em>...</em></dt><dd>Commands for <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> are also accepted here.</dd></dl><h3 id="Output">Output</h3><p>This program prints the following messages, which are single-line JSON arrays,
|
12
12
|
to stdout.</p><dl><dt><code>["reabsorb",</code> <em>overhead_file</em><code>]</code></dt><dd>Test execution overhead is being reabsorbed because <em>overhead_file</em> has
|
13
13
|
changed.</dd></dl><dl><dt><em>...</em></dt><dd>Messages from <a class="md2man-xref" href="../man1/tork-engine.1.html">tork-engine(1)</a> and <a class="md2man-xref" href="../man1/tork-master.1.html">tork-master(1)</a> are also reproduced here.</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="FILES">FILES</h2><dl><dt><em>.tork/config.rb</em></dt><dd>Optional Ruby script that is loaded inside the driver process on startup.
|
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-2013-
|
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-2013-11-25-19-4-0">TORK-ENGINE 1 2013-11-25 19.4.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,
|
11
11
|
from stdin and performs the actions described respectively.</p><dl><dt><code>["reabsorb_overhead"]</code></dt><dd>Stops any test files that are currently running, reabsorbs the test
|
12
12
|
execution overhead, and then re-runs those stopped test files.</dd></dl><dl><dt><code>["run_test_file"</code>, <em>test_file</em><code>,</code> <em>line_numbers</em>...<code>]</code></dt><dd>Runs tests that correspond to the given sequence of <em>line_numbers</em> in the
|
13
13
|
given <em>test_file</em>. If no <em>line_numbers</em> are given, then only those lines
|
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-2013-
|
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-2013-11-25-19-4-0">TORK-HERALD 1 2013-11-25 19.4.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
|
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>
|
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-2013-
|
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-2013-11-25-19-4-0">TORK-MASTER 1 2013-11-25 19.4.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'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,
|
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-2013-
|
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-2013-11-25-19-4-0">TORK-NOTIFY 1 2013-11-25 19.4.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
|
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>
|
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-2013-
|
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-2013-11-25-19-4-0">TORK 1 2013-11-25 19.4.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 is a simple command-line user interface for <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
|
11
11
|
directories that contain configuration files or (2) names of configuration
|
12
12
|
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
|
13
13
|
its stdin or (2) remotely through <a class="md2man-xref" href="../man1/tork-remote.1.html">tork-remote(1)</a>. From then onward, you may
|
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.
|
4
|
+
version: 19.4.0
|
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: 2013-
|
12
|
+
date: 2013-11-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: md2man
|
@@ -113,9 +113,9 @@ files:
|
|
113
113
|
- .gitignore
|
114
114
|
- Gemfile
|
115
115
|
- LICENSE
|
116
|
-
- README.
|
116
|
+
- README.md
|
117
117
|
- Rakefile
|
118
|
-
- VERSION.
|
118
|
+
- VERSION.md
|
119
119
|
- bin/tork
|
120
120
|
- bin/tork-driver
|
121
121
|
- bin/tork-engine
|
@@ -151,26 +151,26 @@ files:
|
|
151
151
|
- lib/tork/master.rb
|
152
152
|
- lib/tork/server.rb
|
153
153
|
- lib/tork/version.rb
|
154
|
-
- man/man0/README.
|
155
|
-
- man/man0/VERSION.
|
154
|
+
- man/man0/README.md
|
155
|
+
- man/man0/VERSION.md
|
156
156
|
- tork.gemspec
|
157
|
-
- man/man1/tork-notify.1
|
158
|
-
- man/man1/tork-remote.1
|
159
157
|
- man/man1/tork-herald.1
|
158
|
+
- man/man1/tork-remote.1
|
160
159
|
- man/man1/tork-engine.1
|
161
160
|
- man/man1/tork-master.1
|
161
|
+
- man/man1/tork-notify.1
|
162
162
|
- man/man1/tork-driver.1
|
163
163
|
- man/man1/tork.1
|
164
164
|
- man/index.html
|
165
|
-
- man/man0/VERSION.html
|
166
|
-
- man/man0/README.html
|
167
|
-
- man/man1/tork-remote.1.html
|
168
|
-
- man/man1/tork-herald.1.html
|
169
165
|
- man/man1/tork-notify.1.html
|
166
|
+
- man/man1/tork-herald.1.html
|
167
|
+
- man/man1/tork-master.1.html
|
170
168
|
- man/man1/tork.1.html
|
171
|
-
- man/man1/tork-driver.1.html
|
172
169
|
- man/man1/tork-engine.1.html
|
173
|
-
- man/man1/tork-
|
170
|
+
- man/man1/tork-driver.1.html
|
171
|
+
- man/man1/tork-remote.1.html
|
172
|
+
- man/man0/VERSION.html
|
173
|
+
- man/man0/README.html
|
174
174
|
- man/style.css
|
175
175
|
homepage: http://github.com/sunaku/tork
|
176
176
|
licenses: []
|