find_tzinfo(name)
TODO: Preload instead of lazy load for thread safety
# File activesupport/lib/active_support/values/time_zone.rb, line 297 def self.find_tzinfo(name) require 'tzinfo' unless defined?(TZInfo) ::TZInfo::Timezone.get(MAPPING[name] || name) rescue TZInfo::InvalidTimezoneIdentifier nil end