aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-01 15:09:56 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-01 15:09:56 -0300
commit736bf14d7c15776f17f6e096dba5024a36d15580 (patch)
tree0db6556859595f586c2c171599713112b0268d1d /activerecord/CHANGELOG.md
parent0c527026308627652c42ed8a6f26a21d3bbc7a5b (diff)
downloadrails-736bf14d7c15776f17f6e096dba5024a36d15580.tar.gz
rails-736bf14d7c15776f17f6e096dba5024a36d15580.tar.bz2
rails-736bf14d7c15776f17f6e096dba5024a36d15580.zip
Revert "Deprecating composed_of in ActiveRecord"
This reverts commit 44b313bc4e3762da64dde7894548f81c595147de.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 63baa7a389..f4a573bb72 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -28,12 +28,6 @@
*Jon Leighton*
-* `composed_of` has been deprecated. You'll have to write your own accessor
- and mutator methods if you'd like to use value objects to represent some
- portion of your models.
-
- *Steve Klabnik*
-
* `update_attribute` has been deprecated. Use `update_column` if
you want to bypass mass-assignment protection, validations, callbacks,
and touching of updated_at. Otherwise please use `update_attributes`.