aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_set.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-21 10:52:19 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-21 10:52:19 -0600
commit3ea9a88d803d7fd1bb0de649f7237fca0200efe3 (patch)
tree627f55bf4c86c087e5695acc0f405160ffb35edb /activerecord/lib/active_record/attribute_set.rb
parent0e9a7059664eb9dee8e3afae60d26ff858d0d84b (diff)
downloadrails-3ea9a88d803d7fd1bb0de649f7237fca0200efe3.tar.gz
rails-3ea9a88d803d7fd1bb0de649f7237fca0200efe3.tar.bz2
rails-3ea9a88d803d7fd1bb0de649f7237fca0200efe3.zip
Move `attributes_before_type_cast` to `AttributeSet`
Diffstat (limited to 'activerecord/lib/active_record/attribute_set.rb')
-rw-r--r--activerecord/lib/active_record/attribute_set.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_set.rb b/activerecord/lib/active_record/attribute_set.rb
index 102ef17e16..f545fa8a9a 100644
--- a/activerecord/lib/active_record/attribute_set.rb
+++ b/activerecord/lib/active_record/attribute_set.rb
@@ -1,11 +1,15 @@
module ActiveRecord
class AttributeSet # :nodoc:
- delegate :[], :[]=, :fetch, :include?, :keys, :each_with_object, to: :attributes
+ delegate :[], :[]=, :fetch, :include?, :keys, to: :attributes
def initialize(attributes)
@attributes = attributes
end
+ def values_before_type_cast
+ attributes.each_with_object({}) { |(k, v), h| h[k] = v.value_before_type_cast }
+ end
+
def update(other)
attributes.update(other.attributes)
end