mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
288a4cf756
* Adds systemd notification support * Improve systemd notification support This takes the work by @acmh and improves on it. This is done by squashing all commits and rebasing it. Then the following changes were made: * Dropped SD_NOTIFY env var. There is aleady the NOTIFY_SOCKET env var presented by systemd and is redundant. * Move code is pushed in Puma::Systemd * on_reload now emits RELOADING=1 notification to systemd * Drop lower bound check on usec. Systemd can only be configured in seconds and it's hard to misconfigure. The actual code should be safe. * Clean up integration tests and skip on JRuby Co-authored-by: Artur Montenegro <artur.montenegro@tempest.com.br>
24 lines
467 B
Ruby
24 lines
467 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rdoc"
|
|
gem "rake-compiler", "~> 1.1.1"
|
|
|
|
gem "nio4r", "~> 2.0"
|
|
gem "rack", "~> 1.6"
|
|
gem "minitest", "~> 5.11"
|
|
gem "minitest-retry"
|
|
gem "minitest-proveit"
|
|
gem "minitest-stub-const"
|
|
gem "sd_notify"
|
|
|
|
gem "jruby-openssl", :platform => "jruby"
|
|
|
|
gem "rubocop", "~> 0.58.0"
|
|
|
|
if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION
|
|
gem "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]
|
|
end
|
|
|
|
gem 'm'
|