Skip to content

Instantly share code, notes, and snippets.

@gberger
Created February 25, 2014 23:47
Show Gist options
  • Save gberger/9220450 to your computer and use it in GitHub Desktop.
Save gberger/9220450 to your computer and use it in GitHub Desktop.
Time#to_date (Ruby monkey patch)
class Time
def to_date
Date.parse(self.to_s)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment