saucelabs-adapter 0.8.5 → 0.8.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +4 -0
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/saucelabs_adapter/tunnels/sauce_tunnel.rb +1 -1
- metadata +4 -4
data/README.markdown
CHANGED
@@ -124,6 +124,10 @@ Resources
|
|
124
124
|
NOTABLE CHANGES
|
125
125
|
===============
|
126
126
|
|
127
|
+
0.8.7
|
128
|
+
-----
|
129
|
+
- No longer exits when the tunnel status is 'deploying'
|
130
|
+
|
127
131
|
0.8.5
|
128
132
|
-----
|
129
133
|
- Allow application_port to be a range of form: XXXX-YYYY, e.g. 4000-5000. The SaucelabsAdapter will find an unused port in that range.
|
data/Rakefile
CHANGED
@@ -22,7 +22,7 @@ begin
|
|
22
22
|
gem.description = %Q{This gem augments Test::Unit and Polonium/Webrat to run Selenium tests in the cloud. }
|
23
23
|
gem.email = "pair+kelly+sam@pivotallabs.com"
|
24
24
|
gem.homepage = "http://github.com/pivotal/saucelabs-adapter"
|
25
|
-
gem.authors = ["Kelly Felkins, Chad Woolley
|
25
|
+
gem.authors = ["Kelly Felkins, Chad Woolley, Sam Pierson, Nate Clark"]
|
26
26
|
gem.files = [
|
27
27
|
"LICENSE",
|
28
28
|
"README.rdoc",
|
@@ -109,4 +109,4 @@ task :deploy => :build do
|
|
109
109
|
gem = `ls pkg/*|tail -1`.strip
|
110
110
|
puts "Deploying #{gem}:"
|
111
111
|
run "gem push #{gem}"
|
112
|
-
end
|
112
|
+
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.
|
1
|
+
0.8.7
|
@@ -56,7 +56,7 @@ module SaucelabsAdapter
|
|
56
56
|
debug " tunnel host is #{tunnel_status}" if tunnel_status != last_status
|
57
57
|
last_status = tunnel_status
|
58
58
|
case tunnel_status
|
59
|
-
when 'new', 'booting'
|
59
|
+
when 'new', 'booting', 'deploying'
|
60
60
|
# Alrighty. Keep going.
|
61
61
|
when 'running'
|
62
62
|
# We're done.
|
metadata
CHANGED
@@ -5,16 +5,16 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 8
|
8
|
-
-
|
9
|
-
version: 0.8.
|
8
|
+
- 7
|
9
|
+
version: 0.8.7
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
|
-
- Kelly Felkins, Chad Woolley
|
12
|
+
- Kelly Felkins, Chad Woolley, Sam Pierson, Nate Clark
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-05-05 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|