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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 960c22d0477d4a3fc18be9e9cf3e0a1ba32ee622aabee83cf810abaec8746e6a
4
- data.tar.gz: 2f2e4b5884ecc1854e8ddd473f569cf9bd4a0e0b3d6e1ea421dfe5f8e8f6bcb5
3
+ metadata.gz: 2c7009edcf3999e58d11d7239e03a13c33c3eb9ca59aefe802a6a7124485abdd
4
+ data.tar.gz: 9f627f50f3690a5ac6c605b4fcb76b150e736c42806f8c9b26cdbe4a125585e5
5
5
  SHA512:
6
- metadata.gz: da26be51c235e68f1595f85bb6fca5ef42f71a01fcabe9e9fff44c620d4d9e3e380f027367d593a0a781fc50a7700c4b20f5dbc2a2de2b8b228163cd8f13fe80
7
- data.tar.gz: 59b545e4b85684c5c69df706870c74d7c688dfd161750007db407bbf2eb6c96438804889d1ea05d0ff7331cb5706f47814c047248476b7a1be377133c8ae6f94
6
+ metadata.gz: a02f151ceec1ab8f4e2ca52aaa92e06ea40f2b2f3892e19bb8d104cc5790407d7e6ca0875b48747c4506b19906cb2fe14c6521da63c99329b89044c6bbf64b5c
7
+ data.tar.gz: f9fd7d33fc31e798b2a3afdd80022e885189ac4c2ab783f1b2dd98f8999c391fe6f80bd648d6fc5c3d46182df0466492032915d094e741dcac38615e52737a37
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1 (2026/03/20)
4
+
5
+ - Fix `uninitialized constant Puma::Plugin` error when Bundler auto-requires the gem before Puma is loaded
6
+
3
7
  ## 0.1.0 (2026/03/19)
4
8
 
5
9
  - Initial release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PumaPluginDelayedStop
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # This file exists so that `require "puma-plugin-delayed_stop"` works, but
4
- # Puma discovers plugins via lib/puma/plugin/<name>.rb automatically.
5
- require_relative "puma/plugin/delayed_stop"
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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma-plugin-delayed_stop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Schmidt