This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
require "rubygems" | ||
require "bundler/setup" | ||
require "stringex" | ||
|
||
## -- Config -- ## | ||
|
||
public_dir = "public" # compiled site directory | ||
posts_dir = "_posts" # directory for blog files | ||
new_post_ext = "md" # default new post file extension when using the new_post task | ||
new_page_ext = "md" # default new page file extension when using the new_page task | ||
|
||
|
||
############################# | ||
# Create a new Post or Page # | ||
############################# | ||
|
||
# usage rake new_post | ||
desc "Create a new post in #{posts_dir}" | ||
task :new_post, :title do |t, args| | ||
if args.title | ||
title = args.title | ||
else | ||
title = get_stdin("Enter a title for your post: ") | ||
end | ||
filename = "#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.to_url}.#{new_post_ext}" | ||
if File.exist?(filename) | ||
abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n' | ||
end | ||
tags = get_stdin("Enter tags to classify your post (comma separated): ") | ||
puts "Creating new post: #{filename}" | ||
open(filename, 'w') do |post| | ||
post.puts "---" | ||
post.puts "layout: post" | ||
post.puts "title: \"#{title.gsub(/&/,'&')}\"" | ||
post.puts "modified: #{Time.now.strftime('%Y-%m-%d %H:%M:%S %z')}" | ||
post.puts "tags: [#{tags}]" | ||
post.puts "image:" | ||
post.puts " feature: " | ||
post.puts " credit: " | ||
post.puts " creditlink: " | ||
post.puts "comments: " | ||
post.puts "share: " | ||
post.puts "---" | ||
end | ||
end | ||
|
||
# usage rake new_page | ||
desc "Create a new page" | ||
task :new_page, :title do |t, args| | ||
if args.title | ||
title = args.title | ||
else | ||
title = get_stdin("Enter a title for your page: ") | ||
end | ||
filename = "#{title.to_url}.#{new_page_ext}" | ||
if File.exist?(filename) | ||
abort("rake aborted!") if ask("#{filename} already exists. Do you want to overwrite?", ['y', 'n']) == 'n' | ||
end | ||
tags = get_stdin("Enter tags to classify your page (comma separated): ") | ||
puts "Creating new page: #{filename}" | ||
open(filename, 'w') do |page| | ||
page.puts "---" | ||
page.puts "layout: page" | ||
page.puts "permalink: /#{title.to_url}/" | ||
page.puts "title: \"#{title}\"" | ||
page.puts "modified: #{Time.now.strftime('%Y-%m-%d %H:%M')}" | ||
page.puts "tags: [#{tags}]" | ||
page.puts "image:" | ||
page.puts " feature: " | ||
page.puts " credit: " | ||
page.puts " creditlink: " | ||
page.puts "share: " | ||
page.puts "---" | ||
end | ||
end | ||
|
||
def get_stdin(message) | ||
print message | ||
STDIN.gets.chomp | ||
end | ||
|
||
def ask(message, valid_options) | ||
if valid_options | ||
answer = get_stdin("#{message} #{valid_options.to_s.gsub(/"/, '').gsub(/, /,'/')} ") while !valid_options.include?(answer) | ||
else | ||
answer = get_stdin(message) | ||
end | ||
answer | ||
end |