Flowdock
method

clone_attribute_value

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods
clone_attribute_value(reader_method, attribute_name) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/attribute_methods.rb, line 353
    def clone_attribute_value(reader_method, attribute_name) # :nodoc:
      value = send(reader_method, attribute_name)
      value.duplicable? ? value.clone : value
    rescue TypeError, NoMethodError
      value
    end
Register or log in to add new notes.