orgsync/stoplight

View on GitHub
lib/stoplight/color.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Stoplight
  module Color
    GREEN = 'green'
    YELLOW = 'yellow'
    RED = 'red'
  end
end