class method
self.use_zone
Ruby on Rails 3.0.20
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 37
def use_zone(time_zone)
old_zone, ::Time.zone = ::Time.zone, get_zone(time_zone)
yield
ensure
::Time.zone = old_zone
end
Defined in activesupport/lib/active_support/core_ext/time/zones.rb line 37
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Time