# File lib/caesars/config.rb, line 52 52: def caesars_init 53: # Remove instance variables used to populate DSL data 54: keys.each { |confname| instance_variable_set("@#{confname}", nil) } 55: # Re-apply options 56: @options.each_pair do |n,v| 57: self.send("#{n}=", v) if respond_to?("#{n}=") 58: end 59: check_paths # make sure files exist 60: end