# File lib/thin/runner.rb, line 134
    def run!
      if self.class.commands.include?(@command)
        run_command
      elsif @command.nil?
        puts "Command required"
        puts @parser
        exit 1  
      else
        abort "Invalid command: #{@command}"
      end
    end