# File lib/selenium/rake/remote_control_start_task.rb, line 33
33:       def initialize(name = 'selenium:rc:start''selenium:rc:start')
34:         @name = name
35:         @host = "localhost"
36:         @port = 4444
37:         @timeout_in_seconds = 5
38:         project_specific_jar = Dir[JAR_FILE_PATTERN].first
39:         @jar_file = project_specific_jar
40:         @additional_args = []
41:         @background = false
42:         @wait_until_up_and_running = false
43:         yield self if block_given?
44:         define
45:       end