summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorscott Chacon <schacon@agadorsparticus.corp.reactrix.com>2007-11-12 11:22:18 -0800
committerscott Chacon <schacon@agadorsparticus.corp.reactrix.com>2007-11-12 11:22:18 -0800
commitec59c5c7ee9fa3b5831ed0b5f713cee218480ea3 (patch)
tree39b41ffa4bd4c3b4d211999d33daf6fde7dbae15 /Rakefile
parent32fbe703605310c91677225442a62ae0869d0892 (diff)
downloadthird_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.tar.gz
third_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.tar.xz
third_party-ruby-git-ec59c5c7ee9fa3b5831ed0b5f713cee218480ea3.zip
updated the docs, added a version to the library, added a History file
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 6cc6eef..323fac1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -30,6 +30,11 @@ task :doc do |t|
system('rdoc lib/ README --main README --inline-source')
end
+desc "Upload Docs"
+task :upload_docs do |t|
+ system('rsync -rv --delete doc/ git.rubyforge.org:/var/www/gforge-projects/git')
+end
+
desc "Run Unit Tests"
task :test do |t|
require File.dirname(__FILE__) + '/tests/all_tests.rb'