aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-18 12:39:42 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-18 12:39:42 -0700
commitffcecf2fb284a32712c4e1aab65d0d11824c4b36 (patch)
treee81f845e6dcb2deff8694ebaf05a5d5cc83dff0e /activerecord/lib
parent83451beb1a797c8bd54afa364c39cc28145db366 (diff)
parent44b313bc4e3762da64dde7894548f81c595147de (diff)
downloadrails-ffcecf2fb284a32712c4e1aab65d0d11824c4b36.tar.gz
rails-ffcecf2fb284a32712c4e1aab65d0d11824c4b36.tar.bz2
rails-ffcecf2fb284a32712c4e1aab65d0d11824c4b36.zip
Merge pull request #6742 from steveklabnik/deprecate_composed_of
Deprecate composed of
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/aggregations.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index c39284539c..e7ed2644ca 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -161,6 +161,8 @@ module ActiveRecord
#
# Customer.where(:balance => Money.new(20, "USD")).all
#
+ # Note: +composed_of+ has been deprecated, and will be removed (with no
+ # replacement) in Rails 4.
module ClassMethods
# Adds reader and writer methods for manipulating a value object:
# <tt>composed_of :address</tt> adds <tt>address</tt> and <tt>address=(new_address)</tt> methods.
@@ -203,6 +205,7 @@ module ActiveRecord
# :converter => Proc.new { |ip| ip.is_a?(Integer) ? IPAddr.new(ip, Socket::AF_INET) : IPAddr.new(ip.to_s) }
#
def composed_of(part_id, options = {})
+ ActiveSupport::Deprecation.warn("composed_of is deprecated, and will be removed in Rails 4. There is no replacement.")
options.assert_valid_keys(:class_name, :mapping, :allow_nil, :constructor, :converter)
name = part_id.id2name