honkster-webrat 0.6.0.9 → 0.6.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data/honkster-webrat.gemspec +3 -2
- data/lib/webrat.rb +1 -1
- data/lib/webrat/selenium/selenium_session.rb +2 -1
- metadata +3 -2
data/honkster-webrat.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{honkster-webrat}
|
5
|
-
s.version = "0.6.0.
|
5
|
+
s.version = "0.6.0.10"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Bryan Helmkamp"]
|
9
|
-
s.date = %q{2009-12-
|
9
|
+
s.date = %q{2009-12-22}
|
10
10
|
s.description = %q{Webrat lets you quickly write expressive and robust acceptance tests
|
11
11
|
for a Ruby web application. It supports simulating a browser inside
|
12
12
|
a Ruby process to avoid the performance hit and browser dependency of
|
@@ -104,6 +104,7 @@ Most Ruby web frameworks and testing frameworks are supported.}
|
|
104
104
|
"lib/webrat/selenium/selenium_rc_server.rb",
|
105
105
|
"lib/webrat/selenium/selenium_session.rb",
|
106
106
|
"lib/webrat/selenium/silence_stream.rb",
|
107
|
+
"pkg/honkster-webrat-0.6.0.9.gem",
|
107
108
|
"spec/fakes/test_adapter.rb",
|
108
109
|
"spec/integration/mechanize/Rakefile",
|
109
110
|
"spec/integration/mechanize/config.ru",
|
data/lib/webrat.rb
CHANGED
@@ -240,8 +240,9 @@ HTML of the page was:
|
|
240
240
|
Webrat.configuration.selenium_server_address || "localhost",
|
241
241
|
Webrat.configuration.selenium_server_port,
|
242
242
|
Webrat.configuration.selenium_browser_key,
|
243
|
-
"http://#{Webrat.configuration.application_address}:#{Webrat.configuration.application_port}"
|
243
|
+
"http://#{Webrat.configuration.application_address}:#{Webrat.configuration.application_port}",
|
244
244
|
Webrat.configuration.default_timeout_in_seconds || 10
|
245
|
+
)
|
245
246
|
$browser.set_speed(0) unless Webrat.configuration.selenium_server_address
|
246
247
|
|
247
248
|
at_exit do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honkster-webrat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.0.
|
4
|
+
version: 0.6.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryan Helmkamp
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-12-
|
12
|
+
date: 2009-12-22 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- lib/webrat/selenium/selenium_rc_server.rb
|
134
134
|
- lib/webrat/selenium/selenium_session.rb
|
135
135
|
- lib/webrat/selenium/silence_stream.rb
|
136
|
+
- pkg/honkster-webrat-0.6.0.9.gem
|
136
137
|
- spec/fakes/test_adapter.rb
|
137
138
|
- spec/integration/mechanize/Rakefile
|
138
139
|
- spec/integration/mechanize/config.ru
|