# this is a code example from http://en.wikipedia.org/wiki/Ruby_(programming_language) # re-open Ruby's Time class class Time def yesterday self - 86400 end end ### try: ### today = Time.now ### yesterday = today.yesterday