-
Notifications
You must be signed in to change notification settings - Fork 174
/
Rakefile
65 lines (56 loc) · 1.28 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
task :default => :generate
desc 'Create new post with rake "post[post-name]"'
task :post, [:title] do |t, args|
if args.title then
new_post(args.title)
else
puts 'rake "post[post-name]"'
end
end
desc 'Build site with Jekyll'
task :generate => [:clean, :scss] do
`jekyll`
end
desc 'Generate css'
task :scss do
`scss media/css/style.scss media/css/style.css`
end
desc 'Start server'
task :server => [:clean, :scss] do
`jekyll serve -t`
end
desc 'Deploy with rake "depoly[comment]"'
task :deploy, [:comment] => :generate do |t, args|
if args.comment then
`git commit . -m '#{args.comment}' && git push`
else
`git commit . -m 'new deployment' && git push`
end
end
desc 'Clean up'
task :clean do
`rm -rf _site`
end
def new_post(title)
time = Time.now
filename = "_posts/" + time.strftime("%Y-%m-%d-") + title + '.markdown'
if File.exists? filename then
puts "Post already exists: #{filename}"
return
end
uuid = `uuidgen | tr "[:upper:]" "[:lower:]" | tr -d "\n"`
File.open(filename, "wb") do |f|
f << <<-EOS
---
title: #{title}
layout: post
guid: urn:uuid:#{uuid}
tags:
-
---
EOS
%x[echo "#{filename}" | pbcopy]
end
puts "created #{filename}"
`git add #{filename}`
end