puma-plugin-delayed_stop 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/puma/plugin/delayed_stop/version.rb +1 -1
- data/lib/puma-plugin-delayed_stop.rb +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c7009edcf3999e58d11d7239e03a13c33c3eb9ca59aefe802a6a7124485abdd
|
|
4
|
+
data.tar.gz: 9f627f50f3690a5ac6c605b4fcb76b150e736c42806f8c9b26cdbe4a125585e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a02f151ceec1ab8f4e2ca52aaa92e06ea40f2b2f3892e19bb8d104cc5790407d7e6ca0875b48747c4506b19906cb2fe14c6521da63c99329b89044c6bbf64b5c
|
|
7
|
+
data.tar.gz: f9fd7d33fc31e798b2a3afdd80022e885189ac4c2ab783f1b2dd98f8999c391fe6f80bd648d6fc5c3d46182df0466492032915d094e741dcac38615e52737a37
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# This file exists so
|
|
4
|
-
# Puma
|
|
5
|
-
|
|
3
|
+
# This file exists so Bundler's auto-require doesn't raise a LoadError.
|
|
4
|
+
# The actual plugin is loaded by Puma when it encounters `plugin :delayed_stop`
|
|
5
|
+
# in the Puma config. It lives at lib/puma/plugin/delayed_stop.rb and is
|
|
6
|
+
# discovered by convention — no explicit require is needed.
|