class Glynn::Jekyll

Attributes

site[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/glynn/jekyll.rb, line 7
def initialize(options = {})
  @site = ::Jekyll::Site.new(::Jekyll.configuration(options))
end

Public Instance Methods

build() click to toggle source

Builds the website in the ./_site directory.

# File lib/glynn/jekyll.rb, line 14
def build
  site.process
end