aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
commit4259199c2cfd3ab4d77acadc8ba158096a243ac0 (patch)
tree36960b80f5cad9c632f35fb02507381dbc052b67 /railties/Rakefile
parentfede0f573ebe64135c60d1ca2ef0c6e98819ba9e (diff)
downloadrails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.gz
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.bz2
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.zip
Made ready for release of 0.13.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1814 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index ec706f827d..8492666f87 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -9,7 +9,7 @@ require 'rbconfig'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'rails'
-PKG_VERSION = '0.13.0' + PKG_BUILD
+PKG_VERSION = '0.13.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -247,15 +247,15 @@ spec = Gem::Specification.new do |s|
s.summary = "Web-application framework with template engine, control-flow layer, and ORM."
s.description = <<-EOF
Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
- on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF
s.add_dependency('rake', '>= 0.5.3')
- s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.0.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.8.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.11.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.0.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.8.1' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false