Module: Rake::Cloneable
Overview
Mixin for creating easily cloned objects.
Instance Method Summary collapse
-
#initialize_copy(source) ⇒ Object
The hook that is invoked by 'clone' and 'dup' methods.
Instance Method Details
#initialize_copy(source) ⇒ Object
The hook that is invoked by 'clone' and 'dup' methods.
8 9 10 11 12 13 14 15 |
# File 'lib/rake/cloneable.rb', line 8 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 |