Class: LetItCrash::Matchers::Jenkins

Inherits:
Base
  • Object
show all
Defined in:
lib/letitcrash/matchers/jenkins.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from LetItCrash::Matchers::Base

Instance Method Details

#branchObject



11
12
13
# File 'lib/letitcrash/matchers/jenkins.rb', line 11

def branch
  environment['ghprbSourceBranch'] || environment['GIT_BRANCH']
end

#matches?Boolean

This method performs a :reek:NilCheck.

Returns:

  • (Boolean)


7
8
9
# File 'lib/letitcrash/matchers/jenkins.rb', line 7

def matches?
  !environment['JENKINS_URL'].nil?
end

#shaObject



15
16
17
# File 'lib/letitcrash/matchers/jenkins.rb', line 15

def sha
  environment['ghprbActualCommit'] || environment['GIT_COMMIT']
end