No commit activity in last 3 years
No release in over 3 years
Puma server control tasks for Capistrano 3.x
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

Capistrano::pumactl

Puma server control tasks for Capistrano 3

Installation

gem 'capistrano', '~> 3.1'
gem 'capistrano-pumactl'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-pumactl

Usage

Require in Capfile:

require 'capistrano/pumactl'

Configurable options, shown here with defaults:

set :pumactl_roles, :app
set :pumactl_config_file, -> { current_path.join('config/puma.rb') }

Tasks

This gem provides the following Capistrano tasks:

  • pumactl:halt
  • pumactl:restart
  • pumactl:phased-restart
  • pumactl:start
  • pumactl:stats
  • pumactl:reload-worker-directory
  • pumactl:status
  • pumactl:stop

Example

Instruct Capistrano to run a phased restart after deploy:

# Hook phased-restart after publishing
after :'deploy:publishing', :'pumactl:phased-restart'

Notes

When using rbenv, rvm, chruby and/or bundler don't forget to add pumactl to the bins list:

fetch(:rbenv_map_bins, []).push 'pumactl'
fetch(:rvm_map_bins, []).push 'pumactl'
fetch(:chruby_map_bins, []).push 'pumactl'
fetch(:bundle_bins, []).push 'pumactl'

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request