class Date

def readable_inspect

Overrides the default inspect method with a human readable one, e.g., "Mon, 21 Feb 2005"
def readable_inspect
  strftime("%a, %d %b %Y")
end