Sha256: b1d1fbf7bbc70f104f40130c02bd457c1846862abf83c9e9cae8c6e53a2e9cf8
Contents?: true
Size: 1.37 KB
Versions: 11
Compression:
Stored size: 1.37 KB
Contents
module CypressRails class Server module Puma def self.create(app, port, host) require "rack/handler/puma" # If we just run the Puma Rack handler it installs signal handlers which prevent us from being able to interrupt tests. # Therefore construct and run the Server instance ourselves. # Rack::Handler::Puma.run(app, { Host: host, Port: port, Threads: "0:4", workers: 0, daemon: false }.merge(options)) default_options = {Host: host, Port: port, Threads: "0:4", workers: 0, daemon: false} options = default_options # .merge(options) conf = Rack::Handler::Puma.config(app, options) events = ::Puma::Events.stdio puma_ver = Gem::Version.new(::Puma::Const::PUMA_VERSION) require_relative "patches/puma_ssl" if (Gem::Version.new("4.0.0")...Gem::Version.new("4.1.0")).cover? puma_ver events.log "Starting Puma..." events.log "* Version #{::Puma::Const::PUMA_VERSION} , codename: #{::Puma::Const::CODE_NAME}" events.log "* Min threads: #{conf.options[:min_threads]}, max threads: #{conf.options[:max_threads]}" ::Puma::Server.new(conf.app, events, conf.options).tap do |s| s.binder.parse conf.options[:binds], s.events s.min_threads, s.max_threads = conf.options[:min_threads], conf.options[:max_threads] end.run.join end end end end
Version data entries
11 entries across 11 versions & 1 rubygems