Class: CodeclimateCi::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/codeclimate_ci/cli.rb

Instance Method Summary collapse

Instance Method Details

#checkObject



13
14
15
16
17
18
19
20
21
22
23
# File 'lib/codeclimate_ci/cli.rb', line 13

def check
  CodeclimateCi.configuration.load_from_options(options)

  exit_invalid_credentials! unless api_requester.connection_established?

  if compare_gpa.worse?(branch_name)
    exit_worse_code!
  else
    exit_good_code!
  end
end