method

dup

rails latest stable - Class: ActiveRecord::Inheritance::ClassMethods
dup()
public

No documentation available.

# File activerecord/lib/active_record/inheritance.rb, line 224
      def dup # :nodoc:
        # `initialize_dup` / `initialize_copy` don't work when defined
        # in the `singleton_class`.
        other = super
        other.set_base_class
        other
      end