aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/aggregations.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-01-29 16:42:12 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-01-29 16:45:29 +0900
commita9c6c3a23ef71fb2bd26a1fdce1d8a1bca492c89 (patch)
treeee5e8c8c50eebeb553d58b3eed9265a9118306c5 /activerecord/lib/active_record/aggregations.rb
parent3cf0973bc7aab24e2245dce66282e8be94c9d362 (diff)
downloadrails-a9c6c3a23ef71fb2bd26a1fdce1d8a1bca492c89.tar.gz
rails-a9c6c3a23ef71fb2bd26a1fdce1d8a1bca492c89.tar.bz2
rails-a9c6c3a23ef71fb2bd26a1fdce1d8a1bca492c89.zip
Remove unused/missing `to_money` converter in the test/doc
Diffstat (limited to 'activerecord/lib/active_record/aggregations.rb')
-rw-r--r--activerecord/lib/active_record/aggregations.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index e5e89734d2..30826c9ffa 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -212,8 +212,7 @@ module ActiveRecord
#
# Option examples:
# composed_of :temperature, mapping: %w(reading celsius)
- # composed_of :balance, class_name: "Money", mapping: %w(balance amount),
- # converter: Proc.new { |balance| balance.to_money }
+ # composed_of :balance, class_name: "Money", mapping: %w(balance amount)
# composed_of :address, mapping: [ %w(address_street street), %w(address_city city) ]
# composed_of :gps_location
# composed_of :gps_location, allow_nil: true