README.md in capistrano-delayed_job-0.0.6 vs README.md in capistrano-delayed_job-0.0.7

- old
+ new

@@ -1,8 +1,8 @@ # Capistrano Recipes for Delayed Job -This gem provides recipes for [Delayed Job](https://github.com/collectiveidea/delayed_job) to setup runit and monit +This gem provides recipes for [Delayed Job](https://github.com/collectiveidea/delayed_job) to setup [runit](smarden.org/runit/) and [monit](http://mmonit.com/monit) ## Usage Add it to your Gemfile without requiring it @@ -56,10 +56,10 @@ #### Setup in your deploy file To use runit to start/stop/restart services instead of monit, use the example below. ```ruby -# stop before deployment +# stop before deployment # (must be done after monit has stopped monitoring the task. If not, the service will be restarted by monit) before "monit:unmonitor", "delayed_job:runit:stop" # start before enabling monitor before "monit:monitor", "delayed_job:runit:start" # restart before enabling monitor / monitoring has been started