Sha256: 2be075c90eef9ed5ab4ccd1fb292c050fa68f5a7f4b14ef0dce14f13cbcd985a
Contents?: true
Size: 909 Bytes
Versions: 56
Compression:
Stored size: 909 Bytes
Contents
require "webrat/selenium/application_servers/base" module Webrat module Selenium module ApplicationServers class Sinatra < Webrat::Selenium::ApplicationServers::Base def start fork do File.open('rack.pid', 'w') { |fp| fp.write Process.pid } exec 'rackup', File.expand_path(Dir.pwd + '/config.ru'), '-p', Webrat.configuration.application_port.to_s end end def stop silence_stream(STDOUT) do pid = File.read(pid_file) system("kill -9 #{pid}") FileUtils.rm_f pid_file end end def fail $stderr.puts $stderr.puts $stderr.puts "==> Failed to boot the Sinatra application server... exiting!" exit end def pid_file prepare_pid_file(Dir.pwd, 'rack.pid') end end end end end
Version data entries
56 entries across 56 versions & 22 rubygems