Flowdock
method

clone_attributes

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Base
clone_attributes(reader_method = :read_attribute, attributes = {}) private

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 2945
      def clone_attributes(reader_method = :read_attribute, attributes = {})
        self.attribute_names.inject(attributes) do |attrs, name|
          attrs[name] = clone_attribute_value(reader_method, name)
          attrs
        end
      end
Register or log in to add new notes.