aboutsummaryrefslogtreecommitdiffstats
path: root/pushgems.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-08-24 09:22:20 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-08-24 09:22:20 +0000
commit6a4d4460ea2569d3bb54e1e75fad945c361cbc9b (patch)
treef5d86ff51511aea73271fad418b3a4efd9164d64 /pushgems.rb
parentc5ff810572c7506b334f70b7036ddc7aee0257fc (diff)
downloadrails-6a4d4460ea2569d3bb54e1e75fad945c361cbc9b.tar.gz
rails-6a4d4460ea2569d3bb54e1e75fad945c361cbc9b.tar.bz2
rails-6a4d4460ea2569d3bb54e1e75fad945c361cbc9b.zip
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
Diffstat (limited to 'pushgems.rb')
-rwxr-xr-xpushgems.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/pushgems.rb b/pushgems.rb
index 5fa2241909..16475e1e22 100755
--- a/pushgems.rb
+++ b/pushgems.rb
@@ -1,10 +1,10 @@
#!/usr/local/bin/ruby
unless ARGV.first == "no_build"
- build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i
+ build_number = "1962"
end
-%w( actionwebservice actionmailer actionpack activerecord railties activesupport).each do |pkg|
+%w( actionwebservice actionmailer actionpack activerecord railties activesupport switchtower ).each do |pkg|
puts "Pushing: #{pkg} (#{build_number})"
if build_number
`cd #{pkg} && rm -rf pkg && PKG_BUILD=#{build_number} rake pgem && cd ..`