Moved TimeZone to Active Support

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@768 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-02-23 15:13:03 +00:00
parent fd6abf0a59
commit f9fca1eb63
6 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@
* Fixed that send_file/data can work even if render* has been called before in action processing to render the content of a file to be send for example #601
* Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Record #688 [Jamis Buck]
* Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Support #688 [Jamis Buck]
* Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields

View File

@ -20,8 +20,6 @@
The OCI8 driver can be retrieved from http://rubyforge.org/projects/ruby-oci8/
* Added TimeZone as the first of a number of value objects that Active Record will start shipping to provide incentatives to use rich value objects using composed_of #688 [Jamis Buck]
* Added option :schema_order to the PostgreSQL adapter to support the use of multiple schemas per database #697 [YuriSchimke]
* Optimized the SQL used to generate has_and_belongs_to_many queries by listing the join table first #693 [yerejm]

View File

@ -47,7 +47,6 @@ require 'active_record/timestamp'
require 'active_record/acts/list'
require 'active_record/acts/tree'
require 'active_record/locking'
require 'active_record/values/time_zone'
ActiveRecord::Base.class_eval do
include ActiveRecord::Validations

View File

@ -1,3 +1,5 @@
* Added TimeZone as the first of a number of value objects that among others Active Record can use rich value objects using composed_of #688 [Jamis Buck]
* Added Date::Conversions for getting dates in different convenient string representations and other objects
* Added Time::Conversions for getting times in different convenient string representations and other objects

View File

@ -27,3 +27,5 @@ require 'active_support/core_ext'
require 'active_support/clean_logger'
require 'active_support/misc'
require 'active_support/dependencies'
require 'active_support/values/time_zone'