class Jekyll::DataReader

def read(dir)

.json, and .csv files in the base directory
Returns @content, a Hash of the .yaml, .yml,

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

Read all the files in and adds them to @content
def read(dir)
  base = @in_source_dir.call(dir)
  read_data_to(base, @content)
  @content
end