Flowdock
method

clone_attributes

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods
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/attribute_methods.rb, line 346
    def clone_attributes(reader_method = :read_attribute, attributes = {}) # :nodoc:
      attribute_names.each do |name|
        attributes[name] = clone_attribute_value(reader_method, name)
      end
      attributes
    end
Register or log in to add new notes.