Normalize line-endings in test plugins
This commit is contained in:
parent
ee2d299370
commit
73fcc42353
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue