class ActiveSupport::TimeZone

def match?(re)

if a match is found.
Compare #name and TZInfo identifier to a supplied regexp, returning +true+
def match?(re)
  (re == name) || (re == MAPPING[name]) ||
    ((Regexp === re) && (re.match?(name) || re.match?(MAPPING[name])))
end