create(name, offset)
Create a new TimeZone instance with the given name and offset.
# File activesupport/lib/active_support/values/time_zone.rb, line 77 def create(name, offset) zone = allocate zone.send :initialize, name, offset zone end