module Chronic
def self.parse(text, options = {})
text - The String text to parse.
date or time can be found, `nil` will be returned.
will be returned (depending on the value of `:guess`). If no
If the parser can find a date or time, either a Time or Chronic::Span
Parses a string containing a natural language date or time.
def self.parse(text, options = {}) Parser.new(options).parse(text) end