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 CHANGED
@@ -1,3 +1,7 @@
1
+ 0.5.0
2
+
3
+ Made the status page load faster but check less often.
4
+
1
5
  0.4.9
2
6
 
3
7
  There is now a very basic status page at http://testbot_server:2288/status.
@@ -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 "slave" process that runs tests).
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
- Using testbot with Rails 2:
77
+ You can keep track of the testbots on:
71
78
 
72
- ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.4.9'
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
  ----
@@ -35,7 +35,8 @@
35
35
  }
36
36
  };
37
37
 
38
- setInterval(status.update, 500);
38
+ status.update();
39
+ setInterval(status.update, 1000);
39
40
  });
40
41
  </script>
41
42
  </head>
@@ -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.4.9"
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: 29
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 4
9
- - 9
10
- version: 0.4.9
8
+ - 5
9
+ - 0
10
+ version: 0.5.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Joakim Kolsj\xC3\xB6"