class Middleman::Cli::Base

def start(*args)

def start(*args)
  # Change flag to a module
  ARGV.unshift("help") if ARGV.delete("--help")
  # Default command is server
  if ARGV[0] != "help" && (ARGV.length < 1 || ARGV.first.include?("-"))
    ARGV.unshift("server")
  end
  super
end