This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
initialize_copy(source)
public
The hook that is invoked by ‘clone’ and ‘dup’ methods.
# File lib/rake/cloneable.rb, line 7
def initialize_copy(source)
super
source.instance_variables.each do |var|
src_value = source.instance_variable_get(var)
value = src_value.clone rescue src_value
instance_variable_set(var, value)
end
end