require "./config" module DocMachine::Plan class Cli def self.add_options(opts, args, parent_config, command) config = Config.new(parent_config) opts.on("plan", "Generate content structure (beta)") do opts.banner = "Usage: #{PROGRAM_NAME} plan [options]" opts.on("-t", "--test", "Test") do Log.info { "Test" } end end end end end