lib/goodcheck/commands/config_loading.rb in goodcheck-1.1.0 vs lib/goodcheck/commands/config_loading.rb in goodcheck-1.2.0
- old
+ new
@@ -3,10 +3,10 @@
module ConfigLoading
attr_reader :config
def load_config!
content = JSON.parse(JSON.dump(YAML.load(config_path.read, config_path.to_s)), symbolize_names: true)
- loader = ConfigLoader.new(path: config_path, content: content)
+ loader = ConfigLoader.new(path: config_path, content: content, stderr: stderr)
@config = loader.load
end
end
end
end