1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/pushgems.rb
Jamis Buck e6a6b3fc48 More rails-switchtower decoupling
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2075 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-08-30 20:55:42 +00:00

14 lines
389 B
Ruby
Executable file

#!/usr/local/bin/ruby
unless ARGV.first == "no_build"
build_number = "1962"
end
%w( actionwebservice actionmailer actionpack activerecord railties activesupport ).each do |pkg|
puts "Pushing: #{pkg} (#{build_number})"
if build_number
`cd #{pkg} && rm -rf pkg && PKG_BUILD=#{build_number} rake pgem && cd ..`
else
`cd #{pkg} && rm -rf pkg && rake pgem && cd ..`
end
end