public
Fork of lifo/doc-rails
Description: Repository for improving Rails documentation
Homepage: http://www.rubyonrails.org
Clone URL: git://github.com/juretta/doc-rails.git
Search Repo:
Xavier Noria (author)
Thu Mar 27 00:42:43 -0700 2008
commit  c4c93e38c8733bba034d9afe8dd826d8a9f0fe9a
tree    7b6d96a014b4d6d78ee416857ab4b1e46e42aa00
parent  bf513b0379724a1487df250132e4d92adf35e4d0
doc-rails / pushgems.rb
100755 16 lines (12 sloc) 0.486 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env 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( 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