Skip to content

Instantly share code, notes, and snippets.

@Bodacious
Created March 2, 2012 10:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Bodacious/1957685 to your computer and use it in GitHub Desktop.
Save Bodacious/1957685 to your computer and use it in GitHub Desktop.
Custom date/time formats in Ruby on Rails
[Time, Date].map do |klass|
klass::DATE_FORMATS[:variable] = lambda do |t|
date =
case
# display today's date as "today"
when t >= Date.today then "today"
# display yesterday's date as 'Yesterday'
when (t >= Date.yesterday and t <= Date.today) then "yesterday"
# otherwise, display date: eg. Mon 4th June
else
t.strftime("%A #{t.day.ordinalize} %B")
end
time = t.strftime(" #{t.strftime("%I").to_i}:%M%p").downcase
date + time
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment