forked from wowthemesnet/mediumish-theme-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
36 lines (30 loc) · 917 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
36
require "rubygems"
require "tmpdir"
require "bundler/setup"
require "jekyll"
# Indique o nome do seu repositório
GITHUB_REPONAME = "cecivieira/cecivieira.github.io"
desc "Geração de site estático"
task :generate do
Jekyll::Site.new(Jekyll.configuration({
"source" => ".",
"destination" => "_site"
})).process
end
desc "Geração de site estático e publicação no GitHub"
task :publish => [:generate] do
Dir.mktmpdir do |tmp|
cp_r "_site/.", tmp
pwd = Dir.pwd
Dir.chdir tmp
File.open(".nojekyll", "wb") { |f| f.puts("Site gerado localmente.") }
system "git init"
system "git add ."
message = "Site atualizado em #{Time.now.utc}"
system "git commit -m #{message.inspect}"
system "git remote add origin [email protected]:#{GITHUB_REPONAME}.git"
system "git checkout -b gh-pages"
system "git push origin gh-pages --force"
Dir.chdir pwd
end
end