module CachedValuesSupport

Public Instance Methods

initialize_copy(other) click to toggle source
Calls superclass method
# File lib/utilrb/module/cached_enum.rb, line 4
def initialize_copy(other)
    super

    cached_variables.each do |varname|
        instance_variable_set(varname, nil)
    end
end