module TomlRB::LocalDateParser

def value

def value
  year, mon, day = captures[:date_skeleton].first.value
  Time.local(year,mon,day)
end