Created
March 18, 2009 15:35
-
-
Save oddlyzen/81195 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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