diff options
author | murphy <murphy@rubychan.de> | 2006-07-09 23:18:40 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2006-07-09 23:18:40 +0000 |
commit | 196765788f6f03fb0754e71c7038669377797374 (patch) | |
tree | 8c1fe9905c1a398dbe27dfd8682bc4f4aceffbce /rake_tasks/documentation.rake | |
parent | 7f5279a503bf72fb6260d417ff3adb550eaab3fd (diff) | |
download | coderay-196765788f6f03fb0754e71c7038669377797374.tar.gz |
Fixed another bug in the Ruby scanner, this time it was unfinished heredocs with empty delimiter.
Fixed documentation uploading.
Diffstat (limited to 'rake_tasks/documentation.rake')
-rw-r--r-- | rake_tasks/documentation.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rake_tasks/documentation.rake b/rake_tasks/documentation.rake index 21232b3..36722fc 100644 --- a/rake_tasks/documentation.rake +++ b/rake_tasks/documentation.rake @@ -28,7 +28,7 @@ namespace :doc do desc 'Upload rdoc to ' + FTP_DOMAIN
task :upload => :all do
gn 'Uploading documentation:'
- Dir.chdir 'rdoc' do
+ Dir.chdir 'doc/all' do
cYcnus_ftp do |ftp|
uploader = uploader_for ftp
ftp.chdir FTP_CODERAY_DIR
|