class Chronic::Parser

def parse(text)

Returns either a Time or Chronic::Span, depending on the value of options[:guess]
Parse "text" with the given options
def parse(text)
  tokens = tokenize(text, options)
  span = tokens_to_span(tokens, options.merge(:text => text))
  puts "+#{'-' * 51}\n| #{tokens}\n+#{'-' * 51}" if Chronic.debug
  if span
    options[:guess] ? guess(span) : span
  end
end