Created
October 29, 2012 15:03
-
-
Save leejarvis/3974042 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
require 'relapse' | |
require "active_support/all" | |
def parse(string) | |
time = string[0].to_i.weeks.ago | |
hour = string[-4, 2].to_i | |
hour += 12 if string[-2, 2] == 'pm' | |
time.change(hour: hour) | |
end | |
Relapse.add_time_format '3 weeks ago at 10pm', -> str { parse(str) } | |
Relapse.parse("3 weeks ago at 10pm") #=> 2012-10-08 22:00:00 +0100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment