class Coveralls::CommandLine

def ensure_can_run_locally!

def ensure_can_run_locally!
  config = Coveralls::Configuration.configuration
  if config[:repo_token].nil?
    Coveralls::Output.puts "Coveralls cannot run locally because no repo_secret_token is set in .coveralls.yml", :color => "red"
    Coveralls::Output.puts "Please try again when you get your act together.", :color => "red"
    return false
  end
  true
end