Skip to content

Instantly share code, notes, and snippets.

@phlegx
Created February 4, 2013 15:44
Show Gist options
  • Save phlegx/4707529 to your computer and use it in GitHub Desktop.
Save phlegx/4707529 to your computer and use it in GitHub Desktop.
## deploy.rb
namespace :doc do
desc "Generate documentation"
task :setup do
`yardoc app`
end
end
## production.rb
...
after "deploy", "daemons:restart"
after "daemons:restart", "doc:setup"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment