public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/ddollar/rails.git
dhh (author)
Fri Apr 07 09:39:58 -0700 2006
commit  e1deb6accad581f1f56e8b3e490ed61676f58b0a
tree    73163a33fbb100755f731057b4397ce707eee5ab
parent  2f4093690b467dbcf79237be486874684743e025 parent  34a7f668259e54a9027f88321dff808f21556c41
rails / pushgems.rb
100755 15 lines (12 sloc) 0.489 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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