Get Current Time In The System's Time Zone In Rails

Posted By Weston Ganger

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:

Article Topic:Software Development - Ruby / Rails

Date:June 13, 2015