Method: Time#to_time

Defined in:
activesupport/lib/active_support/core_ext/time/compatibility.rb

#to_timeObject

Either return self or the time in the local system timezone depending on the setting of ActiveSupport.to_time_preserves_timezone.



13
14
15
# File 'activesupport/lib/active_support/core_ext/time/compatibility.rb', line 13

def to_time
  preserve_timezone ? self : getlocal
end