class LetItCrash::Matchers::Shippable

Public Instance Methods

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