class Jekyll::Commands::Clean
def init_with_program(prog)
def init_with_program(prog) prog.command(:clean) do |c| c.syntax "clean [subcommand]" c.description "Clean the site (removes site output and metadata file) without building." add_build_options(c) c.action do |_, options| Jekyll::Commands::Clean.process(options) end end end