class Jekyll::PostReader

def read_posts(dir)

Returns nothing.

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

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