forked from samfoo/refresh.twlevelup.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
31 lines (27 loc) · 888 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
require 'tmpdir'
# Change your GitHub reponame
GITHUB_REPONAME = "twlevelup/twlevelup.github.io"
SITEMAP_URL = "http://levelup.thoughtworks.com/sitemap.xml"
desc "Generate blog files"
task :generate do
require 'jekyll'
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|
cp_r "_site/.", tmp
Dir.chdir tmp
system "git init"
system "git checkout -b master"
system "git add ."
message = "Site updated at #{Time.now.utc}"
system "git commit -m #{message.shellescape}"
system "git remote add origin https://github.com/#{GITHUB_REPONAME}.git"
system "git push origin master --force"
system "curl http://www.google.com/webmasters/sitemaps/ping?sitemap=#{SITEMAP_URL} > /dev/null"
end
end