README.md in capistrano3-puma-0.1.2 vs README.md in capistrano3-puma-0.1.3

- old
+ new

@@ -4,11 +4,11 @@ ## Installation Add this line to your application's Gemfile: - gem 'capistrano-puma', github: "seuros/capistrano-puma" + gem 'capistrano3-puma', github: "seuros/capistrano-puma" or: gem 'capistrano3-puma' @@ -20,10 +20,11 @@ ```ruby # Capfile require 'capistrano/puma' require 'capistrano/puma/jungle' #if you need the jungle tasks + require 'capistrano/puma/monit' #if you need the monit tasks ``` Configurable options, shown here with defaults: Please note the configuration options below are not required unless you are trying to override a default setting, for instance if you are deploying on a host on which you do not have sudo or root privileges and you need to restrict the path. These settings go in the deploy.rb file. @@ -48,9 +49,10 @@ tmp/pids tmp/sockets log ## Changelog +- 0.1.3: Capistrano 3.1 support - 0.1.2: Gemfile are refreshed between deploys now - 0.1.1: Initial support for Monit and configuration override added. - 0.1.0: Phased restart will be used if puma is in cluster mode - 0.0.9: puma.rb location changed to shared_path root. puma:check moved to after deploy:check - 0.0.8: puma.rb is automatically generated if not present. Fixed RVM issue.