+
+ private
+
+ def load_default_config
+ # Load the default
+ path_root = File.expand_path(File.dirname(__FILE__))
+ path = File.join(path_root, @defaults_path)
+
+ if File.exists?(path)
+ file = File.new(path, "r")
+ @config = MultiJson.decode(file.read)
+ else
+ @config = {}
+ end
+ end