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.
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.sock
puma_pid
- puma pid file, defaultshared/tmp/pids/puma.pid
puma_state
- puma state file, defaultshared/tmp/sockets/puma.state
pumactl_socket
- pumactl socket file, defaultshared/tmp/sockets/pumactl.sock
puma_root_path
- puma command execute root path, defaultcurrent
Then:
$ mina puma:start
require 'mina/puma'
task :setup => :environment do
# Puma needs a place to store its pid file and socket file.
command %(mkdir -p "#{deploy_to}/#{shared_path}/tmp/sockets")
command %(chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/tmp/sockets")
command %(mkdir -p "#{deploy_to}/#{shared_path}/tmp/pids")
command %(chmod g+rx,u+rwx "#{deploy_to}/#{shared_path}/tmp/pids")
...
end
# Add pids and sockets directories to shared paths
set :shared_paths, ['config/database.yml', 'tmp/pids', 'tmp/sockets']
task :deploy do
deploy do
invoke :'git:clone'
invoke :'deploy:link_shared_paths'
...
to :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