discourse/lib/demon/rails_autospec.rb

30 lines
448 B
Ruby
Raw Normal View History

2013-11-01 18:57:50 -04:00
require "demon/base"
class Demon::RailsAutospec < Demon::Base
def self.prefix
"rails-autospec"
end
def stop_signal
"TERM"
end
2013-11-01 18:57:50 -04:00
private
def after_fork
require "rack"
ENV["RAILS_ENV"] = "test"
Rack::Server.start(
2017-07-27 21:20:09 -04:00
config: "config.ru",
AccessLog: [],
Port: ENV["TEST_SERVER_PORT"] || 60099,
2013-11-01 18:57:50 -04:00
)
rescue => e
STDERR.puts e.message
STDERR.puts e.backtrace.join("\n")
exit 1
end
end