Skip to content

Instantly share code, notes, and snippets.

@oddlyzen
Created March 18, 2009 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save oddlyzen/81195 to your computer and use it in GitHub Desktop.
Save oddlyzen/81195 to your computer and use it in GitHub Desktop.
namespace :rdoc do
desc "Generate RDocs for ZepInvest (exluding RESTful Authentication Plugin)"
task :generate do
`rdoc --exclude restful_authentication -o zepdocs ; open zepdocs/index.html`
end
desc "Remove old docs and regenerate RDocs for ZepInvest (exluding RESTful Authentication Plugin)"
task :regenerate do
`rm -rf zepdocs`
`rdoc --exclude restful_authentication -o zepdocs ; open zepdocs/index.html`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment