175 lines
4.9 KiB
Ruby
175 lines
4.9 KiB
Ruby
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
|
|
|
|
# Require all of the Ruby files in the given directory.
|
|
#
|
|
# path - The String relative path from here to the directory.
|
|
#
|
|
# Returns nothing.
|
|
def require_all(path)
|
|
glob = File.join(File.dirname(__FILE__), path, '*.rb')
|
|
Dir[glob].each do |f|
|
|
require f
|
|
end
|
|
end
|
|
|
|
# rubygems
|
|
require 'rubygems'
|
|
|
|
# stdlib
|
|
require 'fileutils'
|
|
require 'time'
|
|
require 'safe_yaml'
|
|
require 'English'
|
|
|
|
# 3rd party
|
|
require 'liquid'
|
|
require 'maruku'
|
|
require 'pygments'
|
|
|
|
# internal requires
|
|
require 'jekyll/core_ext'
|
|
require 'jekyll/site'
|
|
require 'jekyll/convertible'
|
|
require 'jekyll/layout'
|
|
require 'jekyll/page'
|
|
require 'jekyll/post'
|
|
require 'jekyll/draft'
|
|
require 'jekyll/filters'
|
|
require 'jekyll/static_file'
|
|
require 'jekyll/errors'
|
|
|
|
# extensions
|
|
require 'jekyll/plugin'
|
|
require 'jekyll/converter'
|
|
require 'jekyll/generator'
|
|
require 'jekyll/command'
|
|
|
|
require_all 'jekyll/commands'
|
|
require_all 'jekyll/converters'
|
|
require_all 'jekyll/generators'
|
|
require_all 'jekyll/tags'
|
|
|
|
SafeYAML::OPTIONS[:suppress_warnings] = true
|
|
|
|
module Jekyll
|
|
VERSION = '1.0.0.beta4'
|
|
|
|
# Default options. Overriden by values in _config.yml.
|
|
# Strings rather than symbols are used for compatability with YAML.
|
|
DEFAULTS = {
|
|
'source' => Dir.pwd,
|
|
'destination' => File.join(Dir.pwd, '_site'),
|
|
'plugins' => '_plugins',
|
|
'layouts' => '_layouts',
|
|
'keep_files' => ['.git','.svn'],
|
|
|
|
'future' => true, # remove and make true just default
|
|
'pygments' => true, # remove and make true just default
|
|
|
|
'markdown' => 'maruku',
|
|
'permalink' => 'date',
|
|
'baseurl' => '/',
|
|
'include' => ['.htaccess'],
|
|
'paginate_path' => 'page:num',
|
|
|
|
'markdown_ext' => 'markdown,mkd,mkdn,md',
|
|
'textile_ext' => 'textile',
|
|
|
|
'port' => '4000',
|
|
'host' => '0.0.0.0',
|
|
|
|
'excerpt_separator' => "\n\n",
|
|
|
|
'maruku' => {
|
|
'use_tex' => false,
|
|
'use_divs' => false,
|
|
'png_engine' => 'blahtex',
|
|
'png_dir' => 'images/latex',
|
|
'png_url' => '/images/latex'
|
|
},
|
|
|
|
'rdiscount' => {
|
|
'extensions' => []
|
|
},
|
|
|
|
'redcarpet' => {
|
|
'extensions' => []
|
|
},
|
|
|
|
'kramdown' => {
|
|
'auto_ids' => true,
|
|
'footnote_nr' => 1,
|
|
'entity_output' => 'as_char',
|
|
'toc_levels' => '1..6',
|
|
'smart_quotes' => 'lsquo,rsquo,ldquo,rdquo',
|
|
'use_coderay' => false,
|
|
|
|
'coderay' => {
|
|
'coderay_wrap' => 'div',
|
|
'coderay_line_numbers' => 'inline',
|
|
'coderay_line_number_start' => 1,
|
|
'coderay_tab_width' => 4,
|
|
'coderay_bold_every' => 10,
|
|
'coderay_css' => 'style'
|
|
}
|
|
},
|
|
|
|
'redcloth' => {
|
|
'hard_breaks' => true
|
|
}
|
|
}
|
|
|
|
# Public: Generate a Jekyll configuration Hash by merging the default
|
|
# options with anything in _config.yml, and adding the given options on top.
|
|
#
|
|
# override - A Hash of config directives that override any options in both
|
|
# the defaults and the config file. See Jekyll::DEFAULTS for a
|
|
# list of option names and their defaults.
|
|
#
|
|
# Returns the final configuration Hash.
|
|
def self.configuration(override)
|
|
# Convert any symbol keys to strings and remove the old key/values
|
|
override = override.reduce({}) { |hsh,(k,v)| hsh.merge(k.to_s => v) }
|
|
|
|
# _config.yml may override default source location, but until
|
|
# then, we need to know where to look for _config.yml
|
|
source = override['source'] || Jekyll::DEFAULTS['source']
|
|
|
|
# Get configuration from <source>/_config.yml or <source>/<config_file>
|
|
config_files = override.delete('config')
|
|
config_files = File.join(source, "_config.yml") if config_files.to_s.empty?
|
|
# If config is a list of space separate config files
|
|
config_files = config_files.split(' ')
|
|
|
|
begin
|
|
config = {}
|
|
config_files.each do |config_file|
|
|
next_config = YAML.safe_load_file(config_file)
|
|
raise "Configuration file: (INVALID) #{config_file}" if !next_config.is_a?(Hash)
|
|
$stdout.puts "Configuration file: #{config_file}"
|
|
config = config.deep_merge(next_config)
|
|
end
|
|
rescue SystemCallError
|
|
# Errno:ENOENT = file not found
|
|
$stderr.puts "Configuration file: none"
|
|
config = {}
|
|
rescue => err
|
|
$stderr.puts " " +
|
|
"WARNING: Error reading configuration. " +
|
|
"Using defaults (and options)."
|
|
$stderr.puts "#{err}"
|
|
config = {}
|
|
end
|
|
|
|
# Provide backwards-compatibility
|
|
if config['auto']
|
|
$stderr.puts "Deprecation: ".rjust(20) + "'auto' has been changed to " +
|
|
"'watch'. Please update your configuration to use 'watch'."
|
|
config['watch'] = config['auto']
|
|
end
|
|
|
|
# Merge DEFAULTS < _config.yml < override
|
|
Jekyll::DEFAULTS.deep_merge(config).deep_merge(override)
|
|
end
|
|
end
|