This method is deprecated or moved on the latest stable version.
The last existing version (v2.0.3) is shown here.
create(name, offset)
public
Create a newTimeZone instance with the given name and
offset.
# File activesupport/lib/active_support/values/time_zone.rb, line 78
def create(name, offset)
zone = allocate
zone.send!(:initialize, name, offset)
zone
end