module Travis::CLI

def command?(constant)

def command?(constant)
  constant.is_a? Class and constant < Command and not constant.abstract?
end