public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
NZKoz (author)
Wed Oct 03 14:48:43 -0700 2007
commit  0a2404f5cc92c30532465713c4979e3417e8090d
tree    e2e8df2eb0319364b19882cdbe6b61fafebf0622
parent  70a8e6a7d11d53ff9af2f59b837037b7a9449ffd
rails / pushgems.rb
100755 16 lines (12 sloc) 0.49 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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