discourse/lib/demon/rails_autospec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
479 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "demon/base"
2013-11-01 18:57:50 -04:00
class Demon::RailsAutospec < Demon::Base
2013-11-01 18:57:50 -04:00
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