Created
November 12, 2012 16:12
-
-
Save leejarvis/4060222 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dont try this at home | |
require 'relapse' | |
Relapse.handle ':ordinal of :month, :year' do |match| | |
day = match.ordinal[0..-2].to_i | |
Time.local(match.year, match.month, day) | |
end | |
Relapse.parse '4th of june, 2007' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment