Normalize line-endings in test plugins

This commit is contained in:
Ashwin Maroli 2023-03-02 12:48:53 +05:30
parent ee2d299370
commit 73fcc42353
2 changed files with 23 additions and 23 deletions

View File

@ -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)

View File

@ -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