Sha256: 77d3fbeb76d98ae622fdbcd9ae696c1685f054f304f6c6cdb7506dabdc166b86

Contents?: true

Size: 1.41 KB

Versions: 51

Compression:

Stored size: 1.41 KB

Contents

## Plugins

Puma 3.0 added support for plugins that can augment configuration and service
operations.

2 canonical plugins to look to aid in development of further plugins:

* [tmp\_restart](https://github.com/puma/puma/blob/master/lib/puma/plugin/tmp_restart.rb):
  Restarts the server if the file `tmp/restart.txt` is touched
* [heroku](https://github.com/puma/puma-heroku/blob/master/lib/puma/plugin/heroku.rb):
  Packages up the default configuration used by puma on Heroku

Plugins are activated in a puma configuration file (such as `config/puma.rb'`)
by adding `plugin "name"`, such as `plugin "heroku"`.

Plugins are activated based simply on path requirements so, activating the
`heroku` plugin will simply be doing `require "puma/plugin/heroku"`. This
allows gems to provide multiple plugins (as well as unrelated gems to provide
puma plugins).

The `tmp_restart` plugin is bundled with puma, so it can always be used.

To use the `heroku` plugin, add `puma-heroku` to your Gemfile or install it.

### API

## Server-wide hooks

Plugins can use a couple of hooks at server level: `start` and `config`.

`start` runs when the server has started and allows the plugin to start other
functionality to augment puma.

`config` runs when the server is being configured and is passed a `Puma::DSL`
object that can be used to add additional configuration.

Any public methods in `Puma::Plugin` are the public API that any plugin may
use.

Version data entries

51 entries across 51 versions & 3 rubygems

Version Path
puma-5.0.3-java docs/plugins.md
puma-5.0.3 docs/plugins.md
puma-5.0.2-java docs/plugins.md
puma-5.0.2 docs/plugins.md
puma-5.0.1-java docs/plugins.md
puma-5.0.1 docs/plugins.md
puma-5.0.0-java docs/plugins.md
puma-5.0.0 docs/plugins.md
puma-5.0.0.beta2-java docs/plugins.md
puma-5.0.0.beta2 docs/plugins.md
puma-4.3.6-java docs/plugins.md
puma-4.3.6 docs/plugins.md
gitlab-puma-4.3.5.gitlab.3 docs/plugins.md
tdiary-5.1.2 vendor/bundle/ruby/2.6.0/gems/puma-4.3.0/docs/plugins.md
puma-4.3.5-java docs/plugins.md
puma-4.3.5 docs/plugins.md
puma-4.3.4-java docs/plugins.md
puma-4.3.4 docs/plugins.md
puma-5.0.0.beta1-java docs/plugins.md
puma-5.0.0.beta1 docs/plugins.md