aboutsummaryrefslogtreecommitdiffstats
path: root/release.rb
blob: a4219b91f138ca052488c7d6f9ad878f9d787cb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/local/bin/ruby

PACKAGES = %w( activesupport activerecord actionpack actionmailer actionwebservice )

unless ruby_forge_password = ARGV.first
  print "rubyforge.org's password: "
  ruby_forge_password = STDIN.gets.chomp
end

# Checkout source
`rm -rf release && svn export http://dev.rubyonrails.org/svn/rails/trunk release`

# Create Rails packages
`cd release/railties && rake template=jamis package`

# Upload documentation
`cd release/rails/doc/api && scp -r * davidhh@wrath.rubyonrails.com:public_html/rails`
PACKAGES.each do |p| 
  `cd release/#{p} && echo "Publishing documentation for #{p}" && rake template=jamis pdoc`
end

# Upload packages
(PACKAGES + %w(railties)).each do |p| 
  `cd release/#{p} && echo "Releasing #{p}" && RUBY_FORGE_PASSWORD=#{ruby_forge_password} rake release`
end

# Upload rails tgz/zip

# Create SVN tag
`cd ..; svn cp trunk tags/rel_#{ARGV[1]}`