1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Merge pull request #225 from petergoldstein/feature/minor_fixes_to_cap_docs

Minor doc fixes in the README.md, Capistrano section
This commit is contained in:
Evan Phoenix 2013-03-24 07:08:49 -07:00
commit 444c3c7dd7

View file

@ -146,7 +146,7 @@ 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/plentz/puma/blob/master/lib/puma/capistrano.rb), you just need require that:
Puma has included Capistrano [deploy script](https://github.com/puma/puma/blob/master/lib/puma/capistrano.rb), you just need require that:
config/deploy.rb
@ -157,9 +157,9 @@ require 'puma/capistrano'
and then
```bash
$ bunde exec cap puma:start
$ bunde exec cap puma:restart
$ bunde exec cap puma:stop
$ bundle exec cap puma:start
$ bundle exec cap puma:restart
$ bundle exec cap puma:stop
```