diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-18 19:56:22 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-18 19:58:26 -0700 |
commit | 231c2c57092abf4677673b4509c2d29e035e1b96 (patch) | |
tree | ac89d3d6dd479d58cc7c3245d7d7a0bf57d69af7 /actionmailer/Rakefile | |
parent | 1e0d2e36cc4b524ca5a4330eeb3e3fd7f5ca0b5e (diff) | |
download | rails-231c2c57092abf4677673b4509c2d29e035e1b96.tar.gz rails-231c2c57092abf4677673b4509c2d29e035e1b96.tar.bz2 rails-231c2c57092abf4677673b4509c2d29e035e1b96.zip |
Update Rakefiles to connect to wrath as current user. Use ssh config to set a different user.
Diffstat (limited to 'actionmailer/Rakefile')
-rwxr-xr-x | actionmailer/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index c09526cbef..b003f4d559 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -76,12 +76,12 @@ end desc "Publish the API documentation" task :pgem => [:package] do - Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/am", "doc").upload + Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/am", "doc").upload end desc "Publish the release files to RubyForge." |