require 'thor' module Certflare module Commands class Cert < Thor method_option :domain, aliases: %w[-d] desc 'order [options]', 'order a certificate' def order # Stub end end end end