public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
jeremy (author)
Wed Dec 07 21:11:38 -0800 2005
commit  a9f4205b21d3cca95bd3985e09b84be289983fcf
tree    42b663bab502436a0b9dd1b93b3cb7900f3bd146
parent  8a19d148b7ae29872c1a7314a09bb14d338fc390
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