public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/chriseppstein/rails.git
chriseppstein (author)
Mon Jun 16 18:59:58 -0700 2008
commit  ea9be5989b5eb4465d9e057f2d7b77a9a7292e50
tree    545ca9f78948664e05b2f8bb7c52ba294df290a7
parent  f31651bd6ac8c3d887a43ee8f71ed7a9bc7877cb
rails / pushgems.rb
100755 14 lines (12 sloc) 0.416 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env ruby
 
unless ARGV.first == "no_build"
  build_number = Time.now.strftime("%Y%m%d%H%M%S").to_i
end
 
%w( activeresource 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