22 lines
367 B
Ruby
22 lines
367 B
Ruby
|
task :default => :server
|
||
|
|
||
|
desc 'Build site with Jekyll'
|
||
|
task :build do
|
||
|
jekyll
|
||
|
end
|
||
|
|
||
|
desc 'Build and start server with --auto'
|
||
|
task :server do
|
||
|
jekyll '--server --auto'
|
||
|
end
|
||
|
|
||
|
desc 'Build and deploy'
|
||
|
task :deploy => :build do
|
||
|
sh 'rsync -rtzh --delete _site/ walkah.net:/var/www/walkah.net/'
|
||
|
end
|
||
|
|
||
|
def jekyll(opts = '')
|
||
|
sh 'rm -rf _site'
|
||
|
sh 'jekyll ' + opts
|
||
|
end
|