|
Revision 8180, 486 bytes
(checked in by david, 8 months ago)
|
Ousted ActionWebService from Rails 2.0
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
unless ARGV.first == "no_build" |
|---|
| 4 |
build_number = build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i |
|---|
| 5 |
end |
|---|
| 6 |
|
|---|
| 7 |
%w( activeresource actionmailer actionpack activerecord railties activesupport ).each do |pkg| |
|---|
| 8 |
puts "Pushing: #{pkg} (#{build_number})" |
|---|
| 9 |
if build_number |
|---|
| 10 |
`cd |
|---|
| 11 |
else |
|---|
| 12 |
`cd |
|---|
| 13 |
end |
|---|
| 14 |
end |
|---|
| 15 |
|
|---|