How do you format Rails timestamps in a more human-readable format? If I simply print out created_at or updated_at in my view like this:
created_at
updated_at
Take a look at the I18n functionality. It allows you to do the following in your views:
<%= localize(scenario.created_at, :format => :long) %>
where the formats are defined in your locales. More info