Released 0.11.1

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1024 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 04c7e823
...@@ -273,7 +273,7 @@ task :pgem => [:gem] do ...@@ -273,7 +273,7 @@ task :pgem => [:gem] do
end end
desc "Publish the release files to RubyForge." desc "Publish the release files to RubyForge."
task :release => [:package] do task :release => [:gem] do
files = ["gem"].map { |ext| "pkg/#{PKG_FILE_NAME}.#{ext}" } files = ["gem"].map { |ext| "pkg/#{PKG_FILE_NAME}.#{ext}" }
if RUBY_FORGE_PROJECT then if RUBY_FORGE_PROJECT then
......
#!/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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册