From 1ee97534302750f380e962026a419bd367139494 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 28 Sep 2020 13:53:13 +0200 Subject: [PATCH] fix Ruby deprecation warning --- ralf/_plugins/readmes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ralf/_plugins/readmes.rb b/ralf/_plugins/readmes.rb index b5c7ea6..2daac9d 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, Utils.merged_file_read_opts(site, {})).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] -- 2.30.2