method
system_local_time?
v8.0.0 -
Show latest stable
- Class:
Time
system_local_time?()private
No documentation available.
# File activesupport/lib/active_support/core_ext/time/compatibility.rb, line 22
def system_local_time?
if ::Time.equal?(self.class)
zone = self.zone
String === zone &&
(zone != "UTC" || active_support_local_zone == "UTC")
end
end