class Rzo::App::Config

Load all rizzo config files and print the config

Attributes

config[R]

Public Instance Methods

run() click to toggle source
# File lib/rzo/app/config.rb, line 8
def run
  exit_status = 0
  load_config!
  write_file(opts[:output]) { |fd| fd.puts(config.to_yaml) }
  exit_status
end