From 73fcc423536d4d45f4ea2e22c6917b65135ff0c2 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Thu, 2 Mar 2023 12:48:53 +0530 Subject: [PATCH] Normalize line-endings in test plugins --- test/source/_plugins/custom_block.rb | 28 ++++++++++++++-------------- test/source/_plugins/dummy.rb | 18 +++++++++--------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/test/source/_plugins/custom_block.rb b/test/source/_plugins/custom_block.rb index eee0fbaa..286b02c0 100644 --- a/test/source/_plugins/custom_block.rb +++ b/test/source/_plugins/custom_block.rb @@ -1,14 +1,14 @@ -# frozen_string_literal: true - -# For testing excerpt handling of custom tags - -module Jekyll - class DoNothingBlock < Liquid::Block - end - - class DoNothingOther < Liquid::Tag - end -end - -Liquid::Template.register_tag("do_nothing", Jekyll::DoNothingBlock) -Liquid::Template.register_tag("do_nothing_other", Jekyll::DoNothingOther) +# frozen_string_literal: true + +# For testing excerpt handling of custom tags + +module Jekyll + class DoNothingBlock < Liquid::Block + end + + class DoNothingOther < Liquid::Tag + end +end + +Liquid::Template.register_tag("do_nothing", Jekyll::DoNothingBlock) +Liquid::Template.register_tag("do_nothing_other", Jekyll::DoNothingOther) diff --git a/test/source/_plugins/dummy.rb b/test/source/_plugins/dummy.rb index 25eef88e..5c233df6 100644 --- a/test/source/_plugins/dummy.rb +++ b/test/source/_plugins/dummy.rb @@ -1,9 +1,9 @@ -# frozen_string_literal: true - -module Jekyll - class Dummy < Generator - priority :high - - def generate(site) end - end -end +# frozen_string_literal: true + +module Jekyll + class Dummy < Generator + priority :high + + def generate(site) end + end +end