blob: 5d73d75d25c853b085d3b1870b3fc802cde7becc (
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@comox.textdrive.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
|