method
dup
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::Inheritance::ClassMethods
dup()public
No documentation available.
# File activerecord/lib/active_record/inheritance.rb, line 219
def dup # :nodoc:
# `initialize_dup` / `initialize_copy` don't work when defined
# in the `singleton_class`.
other = super
other.set_base_class
other
end