From: Ralf Jung Date: Tue, 14 Jun 2016 07:24:44 +0000 (+0200) Subject: fix compatibility with latest version of Jekyll X-Git-Url: https://git.ralfj.de/web.git/commitdiff_plain/070be3ca2d35ae537b8a329b30134c744cfbf4bc?ds=inline fix compatibility with latest version of Jekyll --- diff --git a/ralf/_plugins/readmes.rb b/ralf/_plugins/readmes.rb index 7767be7..b5c7ea6 100644 --- a/ralf/_plugins/readmes.rb +++ b/ralf/_plugins/readmes.rb @@ -10,7 +10,7 @@ module Jekyll self.process(@name) self.data ||= {} - content = File.read(src, self.merged_file_read_opts({})).each_line.to_a + content = File.read(src, Utils.merged_file_read_opts(site, {})).each_line.to_a self.data['layout'] = 'page' self.data['title'] = content[0].match(/^#* ?(.*)\n$/)[1]