Flowdock
method

clone_attributes

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActiveRecord::Base
clone_attributes(reader_method = :read_attribute, attributes = {}) 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/base.rb, line 1680
      def clone_attributes(reader_method = :read_attribute, attributes = {})
        attribute_names.each do |name|
          attributes[name] = clone_attribute_value(reader_method, name)
        end
        attributes
      end
Register or log in to add new notes.