module Sequel::Plugins::AttributeCallbacks::DelegatorDeepClone

Public Instance Methods

clone() click to toggle source

Delegator clone method doesn’t clone the delegated to object which makes it impossible for the Dirty plugin track changes

Calls superclass method
# File lib/sequel/plugins/attribute_callbacks/rich_data_fixes.rb, line 5
def clone
  c = super
  c.__setobj__ __getobj__.clone
  c
end