class LetItCrash::Matchers::AppVeyor

Public Instance Methods

branch() click to toggle source
# File lib/letitcrash/matchers/app_veyor.rb, line 10
def branch
  environment['APPVEYOR_REPO_BRANCH']
end
matches?() click to toggle source
# File lib/letitcrash/matchers/app_veyor.rb, line 6
def matches?
  ci? && environment['APPVEYOR'] == 'true'
end
sha() click to toggle source
# File lib/letitcrash/matchers/app_veyor.rb, line 14
def sha
  environment['APPVEYOR_REPO_COMMIT']
end