diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-03 18:47:43 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-03 18:47:43 +0000 |
commit | 9d00b0ce858a6f642089a477e7d39fb3f9cf6777 (patch) | |
tree | 1da460b1b198591eca304b91e35eb1d27c42e9b4 /activesupport/CHANGELOG | |
parent | b5c2366569573c76ab9dcbf871a4a00b91d7f141 (diff) | |
download | rails-9d00b0ce858a6f642089a477e7d39fb3f9cf6777.tar.gz rails-9d00b0ce858a6f642089a477e7d39fb3f9cf6777.tar.bz2 rails-9d00b0ce858a6f642089a477e7d39fb3f9cf6777.zip |
Added Module#alias_attribute [Jamis/DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4653 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r-- | activesupport/CHANGELOG | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 98aa5b4468..027c8d5351 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,5 +1,22 @@ *SVN* +* Added Module#alias_attribute [Jamis/DHH]. Example: + + class Content < ActiveRecord::Base + # has a title attribute + end + + class Email < ActiveRecord::Base + alias_attribute :subject, :title + end + + e = Email.find(1) + e.title # => "Superstars" + e.subject # => "Superstars" + e.subject? # => true + e.subject = "Megastars" + e.title # => "Megastars" + * Deprecation: easier to work with warning behavior as procs; default behaviors for each environment so users needn't update env.rb; and testing pleasure with assert_deprecated, assert_not_deprecated. [Jeremy Kemper] By default, test prints to $stderr, dev logs, production ignores. Provide your own per-environment in e.g. config/environments/development.rb: |