1
Fork 0

Upgrade to jekyll 1.0!

This commit is contained in:
Jan-Erik Rediger 2013-05-07 15:03:55 +02:00
parent 2450ee02ad
commit 590218f27a
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
gem "jekyll", ">=0.11.0"
gem "jekyll", "~>1.0.0"
gem "coderay", "~>1.0.0"
gem "kramdown"

View file

@ -10,12 +10,12 @@ PRODUCTION = {
desc 'Generate page using jekyll'
task :generate do
sh "jekyll"
sh "jekyll build"
end
desc 'Serve the page on http://localhost:4000'
task :serve do
sh "jekyll --serve --auto"
sh "jekyll serve --watch"
end
task :default => :serve