Class: Jekyll::PageReader

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll/readers/page_reader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(site, dir) ⇒ PageReader

Returns a new instance of PageReader.



4
5
6
7
8
# File 'lib/jekyll/readers/page_reader.rb', line 4

def initialize(site, dir)
  @site = site
  @dir = dir
  @unfiltered_content = []
end

Instance Attribute Details

#dirObject (readonly)

Returns the value of attribute dir.



3
4
5
# File 'lib/jekyll/readers/page_reader.rb', line 3

def dir
  @dir
end

#siteObject (readonly)

Returns the value of attribute site.



3
4
5
# File 'lib/jekyll/readers/page_reader.rb', line 3

def site
  @site
end

#unfiltered_contentObject (readonly)

Returns the value of attribute unfiltered_content.



3
4
5
# File 'lib/jekyll/readers/page_reader.rb', line 3

def unfiltered_content
  @unfiltered_content
end

Instance Method Details

#read(files) ⇒ Object

Read all the files in <source>/<dir>/ for Yaml header and create a new Page object for each file.

dir - The String relative path of the directory to read.

Returns an array of static pages.



16
17
18
19
# File 'lib/jekyll/readers/page_reader.rb', line 16

def read(files)
  files.map { |page| @unfiltered_content << Page.new(@site, @site.source, @dir, page) }
  @unfiltered_content.select { |page| site.publisher.publish?(page) }
end