class Jekyll::PostReader

def read_drafts(dir)

Returns nothing.

dir - The String relative path of the directory to read.

Document object with each one.
Read all the files in //_drafts and create a new
def read_drafts(dir)
  read_publishable(dir, "_drafts", Document::DATELESS_FILENAME_MATCHER)
end