class ActiveSupport::TimeZone
def match?(re)
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
def match?(re) (re == name) || (re == MAPPING[name]) || ((Regexp === re) && (re.match?(name) || re.match?(MAPPING[name]))) end