class Ronn::Document

def date

the current time.
this is the file's modified time or, if no file is given,
The date the man page was published. If not set explicitly,
def date
  return @date if @date
  return File.mtime(path) if File.exist?(path)
  Time.now
end