method

clone_attribute_value

clone_attribute_value(reader_method, attribute_name)
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 2067
      def clone_attribute_value(reader_method, attribute_name)
        value = send(reader_method, attribute_name)
        value.clone
      rescue TypeError, NoMethodError
        value
      end