2015-10-25 21:21:46 +00:00
|
|
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
|
|
|
require 'jekyll'
|
|
|
|
require 'jekyll-seo-tag'
|
2015-10-31 18:05:19 +00:00
|
|
|
require 'html/proofer'
|
|
|
|
|
2016-02-09 23:48:24 +00:00
|
|
|
ENV['JEKYLL_LOG_LEVEL'] = 'error'
|
2015-10-31 18:05:19 +00:00
|
|
|
|
|
|
|
def dest_dir
|
2016-02-09 23:48:24 +00:00
|
|
|
File.expand_path('../tmp/dest', File.dirname(__FILE__))
|
2015-10-31 18:05:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_dir
|
2016-02-09 23:48:24 +00:00
|
|
|
File.expand_path('./fixtures', File.dirname(__FILE__))
|
2015-10-31 18:05:19 +00:00
|
|
|
end
|
2015-10-25 21:21:46 +00:00
|
|
|
|
|
|
|
CONFIG_DEFAULTS = {
|
2016-02-09 23:48:24 +00:00
|
|
|
'source' => source_dir,
|
|
|
|
'destination' => dest_dir,
|
|
|
|
'gems' => ['jekyll-seo-tag']
|
|
|
|
}.freeze
|
2015-10-25 21:21:46 +00:00
|
|
|
|
2016-02-20 20:49:55 +00:00
|
|
|
def make_page(options = {})
|
2016-02-09 23:48:24 +00:00
|
|
|
page = Jekyll::Page.new site, CONFIG_DEFAULTS['source'], '', 'page.md'
|
2015-10-25 21:21:46 +00:00
|
|
|
page.data = options
|
|
|
|
page
|
|
|
|
end
|
|
|
|
|
2016-02-20 20:49:55 +00:00
|
|
|
def make_post(options = {})
|
2016-02-09 23:48:24 +00:00
|
|
|
filename = File.expand_path('2015-01-01-post.md', CONFIG_DEFAULTS['source'])
|
|
|
|
config = { site: site, collection: site.collections['posts'] }
|
2016-02-03 04:02:08 +00:00
|
|
|
page = Jekyll::Document.new filename, config
|
|
|
|
page.merge_data!(options)
|
2015-10-25 21:21:46 +00:00
|
|
|
page
|
|
|
|
end
|
|
|
|
|
2016-02-20 20:49:55 +00:00
|
|
|
def make_site(options = {})
|
2015-10-25 21:21:46 +00:00
|
|
|
config = Jekyll.configuration CONFIG_DEFAULTS.merge(options)
|
|
|
|
Jekyll::Site.new(config)
|
|
|
|
end
|
|
|
|
|
2016-02-20 20:49:55 +00:00
|
|
|
def make_context(registers = {})
|
2016-02-09 23:48:24 +00:00
|
|
|
Liquid::Context.new({}, {}, { site: site, page: page }.merge(registers))
|
2015-10-25 21:21:46 +00:00
|
|
|
end
|