Its useful to get the current time in the correct time zone instead of UTC.

To do this in Rails.


# Return Current Time in UTC
Time.now

# Return Current Time in your Time Zone
Time.zone.now


Related External Links: