lib/config_hound.rb in config_hound-1.1.0 vs lib/config_hound.rb in config_hound-1.2.0

- old
+ new

@@ -1,11 +1,11 @@ require "config_hound/loader" require "config_hound/version" module ConfigHound - def self.load(*args) - Loader.load(*args) + def self.load(paths, options = {}) + Loader.new(options).load(paths) end end