class method
self.use_zone
Ruby on Rails 4.1.16
Since v3.0.20Signature
self.use_zone(time_zone)
Allows override of Time.zone locally inside supplied block; resets Time.zone to existing value when done.
Parameters
-
time_zonereq
Source
# File activesupport/lib/active_support/core_ext/time/zones.rb, line 44
def use_zone(time_zone)
new_zone = find_zone!(time_zone)
begin
old_zone, ::Time.zone = ::Time.zone, new_zone
yield
ensure
::Time.zone = old_zone
end
end
Defined in activesupport/lib/active_support/core_ext/time/zones.rb line 44
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Time