summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 1b30b3a750bd843a7fdc3ea764b603959a834ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'jekyll'

task :default => [:buildsite]

desc 'Build the site'
task :buildsite do
	def Jekyll::env
		"production"
	end
	Jekyll::Commands::Build::process({})
end