Fix #2413 and setup a Jekyll.env.

This commit is contained in:
Jordon Bedwell 2014-05-15 16:28:37 -05:00
parent 8b5fe24cb2
commit 1c11afd78d
1 changed files with 9 additions and 0 deletions

View File

@ -76,6 +76,15 @@ require 'jekyll-sass-converter'
SafeYAML::OPTIONS[:suppress_warnings] = true SafeYAML::OPTIONS[:suppress_warnings] = true
module Jekyll module Jekyll
# Public: Tells you which Jekyll environment you are building in so you can skip tasks
# if you need to. This is useful when doing expensive compression tasks on css and
# images and allows you to skip that when working in development.
def self.env
ENV["JEKYLL_ENV"] || "development"
end
# Public: Generate a Jekyll configuration Hash by merging the default # Public: Generate a Jekyll configuration Hash by merging the default
# options with anything in _config.yml, and adding the given options on top. # options with anything in _config.yml, and adding the given options on top.
# #