public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
dhh (author)
Sun Feb 04 14:12:33 -0800 2007
commit  a422b8ba62799147fe007efef5fc4e634b26728a
tree    185d68a0e90a5b25f1b198fd4aac5c18f0e34926
parent  ed6509c843d3ba76ac993f60a40fccd51ba0b305
rails / pushgems.rb
100755 14 lines (12 sloc) 0.49 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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