testbot 0.4.9 → 0.5.0
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.
- data/CHANGELOG +4 -0
- data/README.markdown +10 -6
- data/lib/server/status/status.html +2 -1
- data/lib/shared/testbot.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
@@ -32,7 +32,7 @@ How it works
|
|
32
32
|
Testbot is:
|
33
33
|
|
34
34
|
* A **server** to distribute test jobs.
|
35
|
-
* One or more **runners** to run test jobs and return the results (this is the "
|
35
|
+
* One or more **runners** to run test jobs and return the results (this is the "worker" process).
|
36
36
|
* One or more **requesters** that tells the server which tests to distribute and displays the results (the client you use to run tests, for example: **rake testbot:spec**).
|
37
37
|
|
38
38
|
<pre>
|
@@ -59,6 +59,13 @@ Running tests:
|
|
59
59
|
testbot --test --connect 192.168.0.100
|
60
60
|
# --test could also be --spec or --features
|
61
61
|
|
62
|
+
Using testbot with Rails 2:
|
63
|
+
|
64
|
+
ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.5.0'
|
65
|
+
script/generate testbot --connect 192.168.0.100
|
66
|
+
|
67
|
+
rake testbot:spec (or :test, :features)
|
68
|
+
|
62
69
|
Using testbot with Rails 3:
|
63
70
|
|
64
71
|
rails g testbot --connect 192.168.0.100
|
@@ -67,12 +74,9 @@ Using testbot with Rails 3:
|
|
67
74
|
# Gemfile:
|
68
75
|
gem 'testbot'
|
69
76
|
|
70
|
-
|
77
|
+
You can keep track of the testbots on:
|
71
78
|
|
72
|
-
|
73
|
-
script/generate testbot --connect 192.168.0.100
|
74
|
-
|
75
|
-
rake testbot:spec (or :test, :features)
|
79
|
+
http://192.168.0.100:2288/status
|
76
80
|
|
77
81
|
Updating testbot
|
78
82
|
----
|
data/lib/shared/testbot.rb
CHANGED
@@ -7,7 +7,7 @@ module Testbot
|
|
7
7
|
|
8
8
|
# Don't forget to update readme and changelog
|
9
9
|
def self.version
|
10
|
-
version = "0.
|
10
|
+
version = "0.5.0"
|
11
11
|
dev_version_file = File.join(File.dirname(__FILE__), '..', '..', 'DEV_VERSION')
|
12
12
|
if File.exists?(dev_version_file)
|
13
13
|
version += File.read(dev_version_file)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testbot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
version: 0.5.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- "Joakim Kolsj\xC3\xB6"
|