Skip to content

Instantly share code, notes, and snippets.

@leejarvis
Created November 12, 2012 16:12
Show Gist options
  • Save leejarvis/4060222 to your computer and use it in GitHub Desktop.
Save leejarvis/4060222 to your computer and use it in GitHub Desktop.
# 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