-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
38 lines (34 loc) · 1.04 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
require 'date'
desc "Create blog post with :name"
task :new_post, [:name] do |t, args|
post_name = [Date.today.strftime("%Y-%m-%d"), "-", args[:name].downcase.gsub(" ","-"),".md"].join
puts "Creating blog post with name: \n _posts/#{post_name}"
File.open("_posts/#{post_name}", 'w') do |f|
f.puts "---"
f.puts "layout: post"
f.puts "title: #{args[:name]}"
f.puts "categories:"
f.puts "- blog"
f.puts "---"
f.puts ""
end
## Open the new post within vim
exec "vim _posts/#{post_name}"
end
desc "Create book review with :name"
task :book, [:name] do |t, args|
post_name = "#{args[:name].downcase.gsub(" ","-")}.md"
puts "Creating book review with name: \n _books/#{post_name}"
File.open("_books/#{post_name}", 'w') do |f|
f.puts "---"
f.puts "layout: post"
f.puts "title: #{args[:name]}"
f.puts "date: #{Date.today.strftime("%Y-%m-%d 00:00")}"
f.puts "categories:"
f.puts "- book-a-day"
f.puts "---"
f.puts ""
end
## Open the new post within vim
exec "vim _books/#{post_name}"
end