diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-11-08 18:58:29 -0500 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-11-08 18:58:29 -0500 |
commit | ace9e533dc820ca11c1c90196678daaaf0f70ae6 (patch) | |
tree | 7bffe22bd6fe9d584098e9d38a476a34e4879cbf /activesupport | |
parent | 661980692b8cb9986b9a94bcc52955e6142bd8b2 (diff) | |
parent | a6d6a1c9aca612232228c1111be810736a26ab63 (diff) | |
download | rails-ace9e533dc820ca11c1c90196678daaaf0f70ae6.tar.gz rails-ace9e533dc820ca11c1c90196678daaaf0f70ae6.tar.bz2 rails-ace9e533dc820ca11c1c90196678daaaf0f70ae6.zip |
Merge branch 'master' into testing
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index 1961fb43cf..ccbab525ba 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -1,7 +1,6 @@ require 'rake/testtask' require 'rake/rdoctask' require 'rake/gempackagetask' -require 'rake/contrib/sshpublisher' require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version') @@ -65,12 +64,14 @@ end desc "Publish the beta gem" task :pgem => [:package] do + require 'rake/contrib/sshpublisher' Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do + require 'rake/contrib/sshpublisher' Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/as", "doc").upload end |