uptech/togls

View on GitHub
lib/togls/target_types.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Togls
  module TargetTypes
    # one (explicit one), none (explicity none), either (explicit for null
    # toggle case), not set (original explicit hasn't been set yet)
    NONE = :none
    NOT_SET = :not_set
    EITHER = :either
  end
end