A convenience method for returning a collection of TimeZone objects for time zones in the USA.
Source Code
# File active_support/values/time_zone.rb, line 339 def us_zones all.find_all { |z| z.name =~ US_ZONES } end
A convenience method for returning a collection of TimeZone objects for time zones in the USA.
# File active_support/values/time_zone.rb, line 339 def us_zones all.find_all { |z| z.name =~ US_ZONES } end
<code/>and<pre/>for code samples.