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 | |
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.
-rwxr-xr-x | actionmailer/Rakefile | 4 | ||||
-rw-r--r-- | actionpack/Rakefile | 6 | ||||
-rwxr-xr-x | activerecord/Rakefile | 6 | ||||
-rw-r--r-- | activeresource/Rakefile | 6 | ||||
-rw-r--r-- | activesupport/Rakefile | 8 | ||||
-rw-r--r-- | railties/Rakefile | 4 |
6 files changed, 17 insertions, 17 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." diff --git a/actionpack/Rakefile b/actionpack/Rakefile index b37f756c1e..f2ac690332 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -132,13 +132,13 @@ task :update_js => [ :update_scriptaculous ] 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 - `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/ap", "doc").upload + Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ap", "doc").upload end desc "Publish the release files to RubyForge." diff --git a/activerecord/Rakefile b/activerecord/Rakefile index fc068b16c3..7a5296c458 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -225,13 +225,13 @@ end desc "Publish the beta gem" task :pgem => [:package] do - Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/ar", "doc").upload + Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ar", "doc").upload end desc "Publish the release files to RubyForge." diff --git a/activeresource/Rakefile b/activeresource/Rakefile index 9fd0ec4921..220156a718 100644 --- a/activeresource/Rakefile +++ b/activeresource/Rakefile @@ -114,13 +114,13 @@ end desc "Publish the beta gem" task :pgem => [:package] do - Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/ar", "doc").upload + Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ar", "doc").upload end desc "Publish the release files to RubyForge." diff --git a/activesupport/Rakefile b/activesupport/Rakefile index e51bf08f8d..235094ec54 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -65,13 +65,13 @@ end desc "Publish the beta gem" task :pgem => [:package] do - Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/as", "doc").upload + Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/as", "doc").upload end desc "Publish the release files to RubyForge." @@ -172,4 +172,4 @@ namespace :tzinfo do def excluded_classes %w(country country_index_definition country_info country_timezone timezone_index_definition timezone_proxy tzdataparser) end -end
\ No newline at end of file +end diff --git a/railties/Rakefile b/railties/Rakefile index a1d1095c37..eddff57b53 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -333,8 +333,8 @@ end # Publishing ------------------------------------------------------- desc "Publish the API documentation" task :pgem => [:gem] do - Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` + Rake::SshFilePublisher.new("wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh wrath.rubyonrails.org './gemupdate.sh'` end desc "Publish the release files to RubyForge." |