method
to_s
v4.2.9 -
Show latest stable
- Class:
ActiveSupport::TimeWithZone
to_s(format = :default)public
Returns a string of the object’s date and time. Accepts an optional format:
1Note
Time in fixtures
When creating fixtures you should use this method to set created_at/updated_at timestamps correctly:
eg:
This won't work as expected (created_at/updated_at will be nil) a one: episode: active1 play_id: 1 play_time: 20 country: United Kingdom created_at: <%= Time.parse('22:00 14 Aug 2009') %> updated_at: <%= Time.parse('22:00 14 Aug 2009') %>
but this will work as expected:
one: episode: active1 play_id: 1 play_time: 20 country: United Kingdom created_at: <%= Time.parse('22:00 14 Aug 2009').to_s(:db) %> updated_at: <%= Time.parse('22:00 14 Aug 2009').to_s(:db) %>