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