Prepared for 0.10.1 release

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@874 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 5bca6290
*0.7.1* (7th March, 2005)
* Bind to newest Action Pack (1.5.1)
*0.7.0* (24th February, 2005)
* Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples:
......
......@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionmailer'
PKG_VERSION = '0.7.0' + PKG_BUILD
PKG_VERSION = '0.7.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
......@@ -50,7 +50,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
......
*SVN*
*1.5.1* (7th March, 2005)
* Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com]
......
......@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionpack'
PKG_VERSION = '1.5.0' + PKG_BUILD
PKG_VERSION = '1.5.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
......@@ -57,7 +57,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 1.0.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
......
*0.6.0* (Unreleased)
*0.6.0* (7th March, 2005)
* Add action_controller/test_invoke, used for integrating AWS with the Rails testing infrastructure
......
......@@ -9,7 +9,7 @@ require 'fileutils'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionwebservice'
PKG_VERSION = '0.5.0' + PKG_BUILD
PKG_VERSION = '0.6.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
......@@ -56,9 +56,9 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '>= 1.5.0' + PKG_BUILD)
s.add_dependency('activerecord', '>= 1.7.0' + PKG_BUILD)
s.add_dependency('activesupport', '>= 1.0.0' + PKG_BUILD)
s.add_dependency('actionpack', '>= 1.5.1' + PKG_BUILD)
s.add_dependency('activerecord', '>= 1.8.0' + PKG_BUILD)
s.add_dependency('activesupport', '>= 1.0.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
......
*SVN*
*1.8.0* (7th March, 2005)
* Added ActiveRecord::Base.colorize_logging to control whether to use colors in logs or not (on by default)
......
*SVN*
*1.0.1* (7th March, 2005)
* Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]
......
......@@ -5,7 +5,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
PKG_VERSION = '1.0.0' + PKG_BUILD
PKG_VERSION = '1.0.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
task :default => :test
......
*SVN*
*0.10.1* (7th March, 2005)
* Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak]
......@@ -30,6 +30,8 @@
* Removed the obsolete -i/--index option from the WEBrick servlet #743
* Upgraded to Active Record 1.8.0, Action Pack 1.5.1, Action Mailer 0.7.1, Action Web Service 0.6.0, Active Support 1.0.1
*0.10.0* (24th February, 2005)
......
......@@ -9,7 +9,7 @@ require 'rbconfig'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'rails'
PKG_VERSION = '0.10.0' + PKG_BUILD
PKG_VERSION = '0.10.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
......@@ -237,11 +237,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
s.add_dependency('activesupport', '= 1.0.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.7.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 0.7.0' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.5.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.8.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 0.7.1' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.6.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
......
......@@ -60,6 +60,11 @@
<li>Setup Apache with <a href="http://www.fastcgi.com">FastCGI</a> (and <a href="http://raa.ruby-lang.org/list.rhtml?name=fcgi">Ruby bindings</a>), if you need better performance
</ol>
<p>
Trying to setup a default page for Rails using Routes? You'll have to delete this file (public/index.html) to get under way. Then define a new route in <tt>config/routes.rb</tt> of the form:
<pre> map.connect '', :controller => 'wiki/page', :action => 'show', :title => 'Welcome'</pre>
</p>
<p>
Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/>
Then try the friendly Rails community <a href="http://www.rubyonrails.org">on the web</a> or <a href="http://www.rubyonrails.org/show/IRC">on IRC</a>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册