# File lib/caesars/config.rb, line 37 37: def initialize(*args) 38: # We store the options hash b/c we reapply them when we refresh. 39: @options = args.last.kind_of?(Hash) ? args.pop : {} 40: @paths = args.empty? ? [] : args 41: @options = {} 42: @forced_refreshes = 0 43: refresh 44: end