aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/attribute.rb')
-rw-r--r--activerecord/lib/active_record/attribute.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/attribute.rb b/activerecord/lib/active_record/attribute.rb
index 2a8e8f9de4..38281158d8 100644
--- a/activerecord/lib/active_record/attribute.rb
+++ b/activerecord/lib/active_record/attribute.rb
@@ -135,7 +135,7 @@ module ActiveRecord
attr_reader :original_attribute
alias_method :assigned?, :original_attribute
- def original_value_for_database # :doc:
+ def original_value_for_database
if assigned?
original_attribute.original_value_for_database
else
@@ -144,17 +144,17 @@ module ActiveRecord
end
private
- def initialize_dup(other) # :doc:
+ def initialize_dup(other)
if defined?(@value) && @value.duplicable?
@value = @value.dup
end
end
- def changed_from_assignment? # :doc:
+ def changed_from_assignment?
assigned? && type.changed?(original_value, value, value_before_type_cast)
end
- def _original_value_for_database # :doc:
+ def _original_value_for_database
type.serialize(original_value)
end