class Time

def zone

Experimental RBS support (using type sampling data from the type_fusion project).

def zone: () -> ActiveSupport::TimeZone

This signature was generated using 3 samples from 1 application.

If Time.zone has not been set for the current request, returns the TimeZone specified in config.time_zone.
Returns the TimeZone for the current request, if this has been set (via Time.zone=).
def zone
  ::ActiveSupport::IsolatedExecutionState[:time_zone] || zone_default
end