Class: Jekyll::Configuration
- Inherits:
-
Hash
- Object
- Hash
- Jekyll::Configuration
- Defined in:
- lib/jekyll/configuration.rb
Constant Summary collapse
- DEFAULTS =
Default options. Overridden by values in _config.yml. Strings rather than symbols are used for compatibility with YAML.
{ # Where things are 'source' => Dir.pwd, 'destination' => File.join(Dir.pwd, '_site'), 'plugins' => '_plugins', 'layouts' => '_layouts', 'data_source' => '_data', 'collections' => nil, # Handling Reading 'safe' => false, 'include' => ['.htaccess'], 'exclude' => [], 'keep_files' => ['.git','.svn'], 'encoding' => 'utf-8', 'markdown_ext' => 'markdown,mkdown,mkdn,mkd,md', 'textile_ext' => 'textile', # Filtering Content 'show_drafts' => nil, 'limit_posts' => 0, 'future' => true, # remove and make true just default 'unpublished' => false, # Plugins 'whitelist' => [], 'gems' => [], # Conversion 'markdown' => 'kramdown', 'highlighter' => 'pygments', 'lsi' => false, 'excerpt_separator' => "\n\n", # Serving 'detach' => false, # default to not detaching the server 'port' => '4000', 'host' => '127.0.0.1', 'baseurl' => '', # Backwards-compatibility options 'relative_permalinks' => false, # Output Configuration 'permalink' => 'date', 'paginate_path' => '/page:num', 'timezone' => nil, # use the local timezone 'quiet' => false, 'defaults' => [], 'maruku' => { 'use_tex' => false, 'use_divs' => false, 'png_engine' => 'blahtex', 'png_dir' => 'images/latex', 'png_url' => '/images/latex', 'fenced_code_blocks' => true }, '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 } }
Instance Method Summary collapse
-
#backwards_compatibilize ⇒ Object
Public: Ensure the proper options are set in the configuration to allow for backwards-compatibility with Jekyll pre-1.0.
-
#config_files(override) ⇒ Object
Public: Generate list of configuration files from the override.
-
#csv_to_array(csv) ⇒ Object
Public: Split a CSV string into an array containing its values.
- #fix_common_issues ⇒ Object
- #quiet?(override = {}) ⇒ Boolean
-
#read_config_file(file) ⇒ Object
Public: Read configuration and return merged Hash.
-
#read_config_files(files) ⇒ Object
Public: Read in a list of configuration files and merge with this hash.
- #safe_load_file(filename) ⇒ Object
-
#source(override) ⇒ Object
Public: Directory of the Jekyll source folder.
-
#stringify_keys ⇒ Object
Public: Turn all keys into string.
Instance Method Details
#backwards_compatibilize ⇒ Object
Public: Ensure the proper options are set in the configuration to allow for backwards-compatibility with Jekyll pre-1.0
Returns the backwards-compatible configuration
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/jekyll/configuration.rb', line 208 def backwards_compatibilize config = clone # Provide backwards-compatibility if config.key?('auto') || config.key?('watch') Jekyll.logger.warn "Deprecation:", "Auto-regeneration can no longer" + " be set from your configuration file(s). Use the"+ " --[no-]watch/-w command-line option instead." config.delete('auto') config.delete('watch') end if config.key? 'server' Jekyll.logger.warn "Deprecation:", "The 'server' configuration option" + " is no longer accepted. Use the 'jekyll serve'" + " subcommand to serve your site with WEBrick." config.delete('server') end if config.key? 'server_port' Jekyll.logger.warn "Deprecation:", "The 'server_port' configuration option" + " has been renamed to 'port'. Please update your config" + " file accordingly." # copy but don't overwrite: config['port'] = config['server_port'] unless config.key?('port') config.delete('server_port') end if config.key? 'pygments' Jekyll.logger.warn "Deprecation:", "The 'pygments' configuration option" + " has been renamed to 'highlighter'. Please update your" + " config file accordingly. The allowed values are 'rouge', " + "'pygments' or null." config['highlighter'] = 'pygments' if config['pygments'] config.delete('pygments') end %w[include exclude].each do |option| if config.fetch(option, []).is_a?(String) Jekyll.logger.warn "Deprecation:", "The '#{option}' configuration option" + " must now be specified as an array, but you specified" + " a string. For now, we've treated the string you provided" + " as a list of comma-separated values." config[option] = csv_to_array(config[option]) end config[option].map!(&:to_s) end if config.fetch('markdown', 'kramdown').to_s.downcase.eql?("maruku") Jekyll::Deprecator. "You're using the 'maruku' " + "Markdown processor. Maruku support has been deprecated and will " + "be removed in 3.0.0. We recommend you switch to Kramdown." end config end |
#config_files(override) ⇒ Object
Public: Generate list of configuration files from the override
override - the command-line options hash
Returns an Array of config files
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/jekyll/configuration.rb', line 135 def config_files(override) # Be quiet quickly. Jekyll.logger.log_level = :error if quiet?(override) # Get configuration from <source>/_config.yml or <source>/<config_file> config_files = override.delete('config') if config_files.to_s.empty? default = %w[yml yaml].find(Proc.new { 'yml' }) do |ext| File.exists? Jekyll.sanitized_path(source(override), "_config.#{ext}") end config_files = Jekyll.sanitized_path(source(override), "_config.#{default}") @default_config_file = true end config_files = [config_files] unless config_files.is_a? Array config_files end |
#csv_to_array(csv) ⇒ Object
Public: Split a CSV string into an array containing its values
csv - the string of comma-separated values
Returns an array of the values contained in the CSV
200 201 202 |
# File 'lib/jekyll/configuration.rb', line 200 def csv_to_array(csv) csv.split(",").map(&:strip) end |
#fix_common_issues ⇒ Object
264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/jekyll/configuration.rb', line 264 def fix_common_issues config = clone if config.key?('paginate') && (!config['paginate'].is_a?(Integer) || config['paginate'] < 1) Jekyll.logger.warn "Config Warning:", "The `paginate` key must be a" + " positive integer or nil. It's currently set to '#{config['paginate'].inspect}'." config['paginate'] = nil end config end |
#quiet?(override = {}) ⇒ Boolean
115 116 117 |
# File 'lib/jekyll/configuration.rb', line 115 def quiet?(override = {}) override['quiet'] || self['quiet'] || DEFAULTS['quiet'] end |
#read_config_file(file) ⇒ Object
Public: Read configuration and return merged Hash
file - the path to the YAML file to be read in
Returns this configuration, overridden by the values in the file
157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/jekyll/configuration.rb', line 157 def read_config_file(file) next_config = safe_load_file(file) raise ArgumentError.new("Configuration file: (INVALID) #{file}".yellow) unless next_config.is_a?(Hash) Jekyll.logger.info "Configuration file:", file next_config rescue SystemCallError if @default_config_file Jekyll.logger.warn "Configuration file:", "none" {} else Jekyll.logger.error "Fatal:", "The configuration file '#{file}' could not be found." raise LoadError, "The Configuration file '#{file}' could not be found." end end |
#read_config_files(files) ⇒ Object
Public: Read in a list of configuration files and merge with this hash
files - the list of configuration file paths
Returns the full configuration, with the defaults overridden by the values in the configuration files
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jekyll/configuration.rb', line 178 def read_config_files(files) configuration = clone begin files.each do |config_file| new_config = read_config_file(config_file) configuration = Utils.deep_merge_hashes(configuration, new_config) end rescue ArgumentError => err Jekyll.logger.warn "WARNING:", "Error reading configuration. " + "Using defaults (and options)." $stderr.puts "#{err}" end configuration.fix_common_issues.backwards_compatibilize end |
#safe_load_file(filename) ⇒ Object
119 120 121 122 123 124 125 126 127 128 |
# File 'lib/jekyll/configuration.rb', line 119 def safe_load_file(filename) case File.extname(filename) when /\.toml/i TOML.load_file(filename) when /\.ya?ml/i SafeYAML.load_file(filename) else raise ArgumentError, "No parser for '#{filename}' is available. Use a .toml or .y(a)ml file instead." end end |
#source(override) ⇒ Object
Public: Directory of the Jekyll source folder
override - the command-line options hash
Returns the path to the Jekyll source directory
111 112 113 |
# File 'lib/jekyll/configuration.rb', line 111 def source(override) override['source'] || self['source'] || DEFAULTS['source'] end |
#stringify_keys ⇒ Object
Public: Turn all keys into string
Return a copy of the hash where all its keys are strings
102 103 104 |
# File 'lib/jekyll/configuration.rb', line 102 def stringify_keys reduce({}) { |hsh,(k,v)| hsh.merge(k.to_s => v) } end |