File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
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+
37## 0.1.0 (2026/03/19)
48
59- Initial release
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
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.
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module PumaPluginDelayedStop
4- VERSION = "0.1.0 "
4+ VERSION = "0.1.1 "
55end
You can’t perform that action at this time.
0 commit comments