mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
578d0ce5e5
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@676 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
8 lines
345 B
Ruby
Executable file
8 lines
345 B
Ruby
Executable file
#!/usr/local/bin/ruby
|
|
|
|
build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i
|
|
|
|
(%w( actionwebservice actionmailer actionpack activerecord railties activesupport) - ARGV).each do |pkg|
|
|
puts "Pushing: #{pkg} (#{build_number})"
|
|
`cd #{pkg} && PKG_BUILD=#{build_number} rake pgem && cd ..`
|
|
end
|