Mina tasks for handle with Puma.
This gem provides several mina tasks:
mina puma:phased_restart # Restart puma (using phased restart)
mina puma:hard_restart # Restart puma (using stop, then start)
mina puma:restart # Restart puma (using pumactl)
mina puma:start # Start puma
mina puma:stop # Stop puma
mina puma:status # Get status
Add this line to your application's Gemfile:
gem 'mina-puma', require: false
And then execute:
$ bundle
Or install it yourself as:
$ gem install mina-puma
Note: by just including this gem, does not mean your development server will be Puma, for that, you need explicitly add gem 'puma' to your Gemfile.
Run:
mina init
to generate config/deploy.rb file if you have not configured it yet.
Add this to your config/deploy.rb file:
require 'mina/puma'
Make sure the following settings are set in your config/deploy.rb:
deploy_to- deployment path
Make sure the following directories exists on your server:
shared/tmp/sockets- directory for socket files.shared/tmp/pids- directory for pid files.
OR you can set other directories by setting follow variables:
puma_socket- puma socket file, default isshared/tmp/sockets/puma.sockpuma_pid- puma pid file, defaultshared/tmp/pids/puma.pidpuma_state- puma state file, defaultshared/tmp/sockets/puma.statepuma_stdout- puma redirect path for stdout, defaultshared/log/puma.logpuma_stderr- puma redirect path for stderr, defaultshared/log/puma.logpumactl_socket- pumactl socket file, defaultshared/tmp/sockets/pumactl.sockpuma_root_path- puma command execute root path, defaultcurrent
Then:
$ mina puma:start
require 'mina/puma'
# Add pids and sockets directories to shared dirs
set :shared_dirs, fetch(:shared_dirs, []).push('log', 'tmp/pids', 'tmp/sockets')
task :deploy do
deploy do
invoke :'git:clone'
invoke :'deploy:link_shared_paths'
...
on :launch do
...
invoke :'puma:phased_restart'
end
end
end- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request