diff --git a/README.md b/README.md index d1be8b4d9e..0e289122ca 100644 --- a/README.md +++ b/README.md @@ -211,12 +211,21 @@ If you want an easy way to manage multiple scripts at once check [tools/jungle]( ## Capistrano deployment -Puma has included Capistrano [deploy script](https://github.com/puma/puma/blob/master/lib/puma/capistrano.rb), you just need require that: +Puma has support for Capistrano3 with an [external gem](https://github.com/seuros/capistrano-puma), you just need require that in Gemfile: -config/deploy.rb +```ruby +gem 'capistrano3-puma' +``` +And then execute: + +```bash +bundle +``` + +Then add to Capfile ```ruby -require 'puma/capistrano' +require 'capistrano/puma' ``` and then