Class: Seleniumrc::MongrelSeleniumServerRunner

Inherits:
SeleniumServerRunner show all
Defined in:
lib/seleniumrc/mongrel_selenium_server_runner.rb

Instance Attribute Summary

Attributes inherited from SeleniumServerRunner

#configuration, #thread_class

Instance Method Summary collapse

Methods inherited from SeleniumServerRunner

#initialize, #started?, #stop

Constructor Details

This class inherits a constructor from Seleniumrc::SeleniumServerRunner

Instance Method Details

#startObject



3
4
5
6
7
8
9
10
11
# File 'lib/seleniumrc/mongrel_selenium_server_runner.rb', line 3

def start
  mongrel_configurator = configuration.create_mongrel_configurator
  initialize_server(mongrel_configurator)

  @thread_class.start do
    start_server(mongrel_configurator)
  end
  @started = true
end