rails/pushgems.rb
David Heinemeier Hansson 9e803e081a Get rid of that silly lock
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2128 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-09-04 00:28:28 +00:00

15 lines
489 B
Ruby
Executable File

#!/usr/local/bin/ruby
unless ARGV.first == "no_build"
build_number = build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i
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