Release v3.2.0.pre.beta2

This commit is contained in:
Parker Moore 2016-07-24 16:43:28 -07:00
parent 1be51f963b
commit 9f02ec6cf8
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
3 changed files with 6 additions and 1 deletions

View File

@ -170,7 +170,9 @@ module Jekyll
# Returns nothing. # Returns nothing.
def generate def generate
generators.each do |generator| generators.each do |generator|
start = Time.now
generator.generate(self) generator.generate(self)
Jekyll.logger.debug "Generating:", "#{generator.class} finished in #{Time.now - start} seconds."
end end
end end

View File

@ -1,3 +1,3 @@
module Jekyll module Jekyll
VERSION = "3.2.0.pre.beta1".freeze VERSION = "3.2.0.pre.beta2".freeze
end end

View File

@ -36,6 +36,8 @@ namespace :site do
task :generate => :generated_pages do task :generate => :generated_pages do
require "jekyll" require "jekyll"
Jekyll::Commands::Build.process({ Jekyll::Commands::Build.process({
"profile" => true,
"verbose" => true,
"source" => File.expand_path("site"), "source" => File.expand_path("site"),
"destination" => File.expand_path("site/_site") "destination" => File.expand_path("site/_site")
}) })
@ -83,6 +85,7 @@ namespace :site do
ENV['JEKYLL_ENV'] = 'production' ENV['JEKYLL_ENV'] = 'production'
require "jekyll" require "jekyll"
Jekyll::Commands::Build.process({ Jekyll::Commands::Build.process({
"verbose" => true,
"source" => File.expand_path("site"), "source" => File.expand_path("site"),
"destination" => File.expand_path("gh-pages"), "destination" => File.expand_path("gh-pages"),
"sass" => { "style" => "compressed" } "sass" => { "style" => "compressed" }