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
The strftime (from Ruby's Time) and to_formatted_s (from Rails' ActiveSupport) functions should be able to handle all of your time-formatting needs.