10 lines
147 B
Ruby
10 lines
147 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module JekyllFeed
|
||
|
class PageWithoutAFile < Jekyll::Page
|
||
|
def read_yaml(*)
|
||
|
@data ||= {}
|
||
|
end
|
||
|
end
|
||
|
end
|