public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
dhh (author)
Tue Jun 27 12:01:06 -0700 2006
commit  0c516b370b08e3e095fe24cc0e2b8d52fdecf9e0
tree    39348ebf8914ac740cb5af8c2c26a28ae6134f69
parent  755ff58d568276c194d92c110873040d558a2f2d
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