Sha256: 5135a19c85ad2c92d3fc76826b3e36f2c1b89a35496abe09eb78b36ad0d6bd5f
Contents?: true
Size: 519 Bytes
Versions: 21
Compression:
Stored size: 519 Bytes
Contents
# This is necessary for the terminal to work correctly when we reopen stdin. Process.setsid require "spring/application" app = Spring::Application.new( UNIXSocket.for_fd(3), Spring::JSON.load(ENV.delete("SPRING_ORIGINAL_ENV").dup), Spring::Env.new(log_file: IO.for_fd(4)) ) Signal.trap("TERM") { app.terminate } Spring::ProcessTitleUpdater.run { |distance| "spring app | #{app.app_name} | started #{distance} ago | #{app.app_env} mode" } app.eager_preload if ENV.delete("SPRING_PRELOAD") == "1" app.run
Version data entries
21 entries across 21 versions & 3 rubygems