testbot 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/README.markdown +1 -1
  3. data/lib/testbot.rb +2 -2
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 0.3.5
2
+
3
+ Fixed ssh_tunnel bug when using a custom user.
4
+
1
5
  0.3.4
2
6
 
3
7
  Bundler support. Testbot now runs "bundle" before "testbot:before_run" if you
@@ -68,7 +68,7 @@ Using testbot with Rails 3:
68
68
 
69
69
  Using testbot with Rails 2:
70
70
 
71
- ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.3.4'
71
+ ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.3.5'
72
72
 
73
73
  The rails 2 config generator isn't done yet so you can look at the following examples instead:
74
74
  [lib/tasks/testbot.rake](https://gist.github.com/715836) and
@@ -6,7 +6,7 @@ module Testbot
6
6
  require 'railtie' if defined?(Rails)
7
7
 
8
8
  # Don't forget to update readme and changelog
9
- VERSION = "0.3.4"
9
+ VERSION = "0.3.5"
10
10
 
11
11
  SERVER_PID = "/tmp/testbot_server.pid"
12
12
  RUNNER_PID = "/tmp/testbot_runner.pid"
@@ -71,7 +71,7 @@ module Testbot
71
71
  Dir.chdir(working_dir)
72
72
  runner = Runner.new(:server_host => opts[:connect],
73
73
  :auto_update => opts[:auto_update], :max_instances => opts[:cpus],
74
- :ssh_tunnel => opts[:ssh_tunnel], :user => opts[:user],
74
+ :ssh_tunnel => opts[:ssh_tunnel], :server_user => opts[:user],
75
75
  :max_jruby_instances => opts[:max_jruby_instances],
76
76
  :jruby_opts => opts[:jruby_opts])
77
77
  runner.run!
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: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 4
10
- version: 0.3.4
9
+ - 5
10
+ version: 0.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Joakim Kolsj\xC3\xB6"