From c34c1916d1d6cd6ba219aa39eb97fa2e77c4c61f Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Mon, 23 Jul 2012 04:13:18 -0400 Subject: Removed reference to composed_of. It was previously removed from the code, so we shouldn't mention it in the docs --- activerecord/lib/active_record/sanitization.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/activerecord/lib/active_record/sanitization.rb b/activerecord/lib/active_record/sanitization.rb index ca767cc704..0dd4070ba4 100644 --- a/activerecord/lib/active_record/sanitization.rb +++ b/activerecord/lib/active_record/sanitization.rb @@ -54,9 +54,6 @@ module ActiveRecord # # => "`other_records`.`id` = 7" # { :other_records => { :id => 7 } } # # => "`other_records`.`id` = 7" - # And for value objects on a composed_of relationship: - # { :address => Address.new("123 abc st.", "chicago") } - # # => "address_street='123 abc st.' and address_city='chicago'" def sanitize_sql_hash_for_conditions(attrs, default_table_name = self.table_name) table = Arel::Table.new(table_name).alias(default_table_name) PredicateBuilder.build_from_hash(arel_engine, attrs, table).map { |b| -- cgit v1.2.3