module Chronic

def self.parse(text, options = {})

opts - An optional Hash of configuration options passed to Parser::new.
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