mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-14 01:18:13 -05:00
10 lines
128 B
Ruby
10 lines
128 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jekyll
|
|
class Dummy < Generator
|
|
priority :high
|
|
|
|
def generate(site) end
|
|
end
|
|
end
|