forked from willkoehler/my_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
35 lines (33 loc) · 1021 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require "rubygems"
require "tmpdir"
require "bundler/setup"
require "jekyll"
namespace :site do
desc "Generate blog files"
task :generate do
Jekyll::Site.new(Jekyll.configuration({
"source" => ".",
"destination" => "_site"
})).process
end
desc "Generate and publish blog to gh-pages"
task :publish => [:generate] do
Dir.mktmpdir do |tmp|
system "mv _site/* #{tmp}"
if system "git show-ref --verify --quiet refs/heads/gh-pages"
system "git checkout gh-pages"
else
system "git checkout --orphan gh-pages" # create new branch with no history
end
next if $?.exitstatus != 0 # abort if checkout failed
system "rm -rf *"
system "mv #{tmp}/* ."
message = "Site updated at #{Time.now.utc}"
system "git add --all ."
system "git commit -am #{message.shellescape}"
system "git push origin gh-pages --force"
system "git checkout master"
puts "Site published successfully."
end
end
end