class Honeybadger::Config

def includes_token?(obj, value)

array in String or Symbol form, otherwise false.
Takes an Array and a value and returns true if the value exists in the
def includes_token?(obj, value)
  return false unless obj.kind_of?(Array)
  obj.map(&:to_sym).include?(value.to_sym)
end