Class: LetItCrash::Matchers::Wercker

Inherits:
Base
  • Object
show all
Defined in:
lib/letitcrash/matchers/wercker.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/wercker.rb', line 11

def branch
  environment['WERCKER_GIT_BRANCH']
end

#matches?Boolean

This method performs a :reek:NilCheck.

Returns:

  • (Boolean)


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

def matches?
  ci? && !branch.nil?
end

#shaObject



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

def sha
  environment['WERCKER_GIT_COMMIT']
end