lib/countries/timezones.rb
# frozen_string_literal: true module ISO3166 # Extend Country class with support for timezones. Requires the {tzinfo}[https://github.com/tzinfo/tzinfo] gem # # gem 'tzinfo' # module TimezoneExtensions # TODO: rename method to tz_country or something similar def timezones @timezones ||= TZInfo::Country.get(alpha2) end end end ISO3166::Country.include ISO3166::TimezoneExtensions