From 6a4d4460ea2569d3bb54e1e75fad945c361cbc9b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 24 Aug 2005 09:22:20 +0000 Subject: Made SwitchTower conform to the other Rakefiles in terms of PKG description and beta gems pushing git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2045 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- switchtower/Rakefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'switchtower/Rakefile') diff --git a/switchtower/Rakefile b/switchtower/Rakefile index 69ac03c9a0..7a4e2c6351 100644 --- a/switchtower/Rakefile +++ b/switchtower/Rakefile @@ -2,11 +2,14 @@ require 'rake' require 'rake/testtask' require 'rake/rdoctask' require 'rake/gempackagetask' +require 'rake/contrib/rubyforgepublisher' require "./lib/switchtower/version" -SOFTWARE_NAME = "switchtower" -SOFTWARE_VERSION = SwitchTower::Version::STRING +PKG_NAME = "switchtower" +PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' +PKG_VERSION = SwitchTower::Version::STRING + PKG_BUILD +PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default task" task :default => [ :test ] @@ -19,7 +22,7 @@ Rake::TestTask.new do |t| t.verbose = true end -GEM_SPEC = eval(File.read("#{File.dirname(__FILE__)}/#{SOFTWARE_NAME}.gemspec")) +GEM_SPEC = eval(File.read("#{File.dirname(__FILE__)}/#{PKG_NAME}.gemspec")) Rake::GemPackageTask.new(GEM_SPEC) do |p| p.gem_spec = GEM_SPEC @@ -36,3 +39,9 @@ Rake::RDocTask.new do |rdoc| rdoc.rdoc_files.include 'lib/**/*.rb' rdoc.template = "jamis" 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'` +end \ No newline at end of file -- cgit v1.2.3