aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/attribute_methods.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/attribute_methods.rb')
-rw-r--r--activemodel/lib/active_model/attribute_methods.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/attribute_methods.rb b/activemodel/lib/active_model/attribute_methods.rb
index 76bfd4b77d..73468afe55 100644
--- a/activemodel/lib/active_model/attribute_methods.rb
+++ b/activemodel/lib/active_model/attribute_methods.rb
@@ -106,8 +106,8 @@ module ActiveModel
if block_given?
sing.send :define_method, name, &block
else
- value = value.nil? ? 'nil' : value.to_s
- sing.send(:define_method, name) { value.dup }
+ value = value.to_s if value
+ sing.send(:define_method, name) { value && value.dup }
end
end