Skip to content

Instantly share code, notes, and snippets.

@kahlil
Forked from clauswitt/new.rb
Created July 22, 2012 13:27
Show Gist options
  • Save kahlil/3159681 to your computer and use it in GitHub Desktop.
Save kahlil/3159681 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# Script to create a jekyll blog post using a template and open it in textmate. It takes one input parameter
# which is the title of the blog post
# e.g. command:
# $ ./new.rb "helper script to create new posts using jekyll"
#
# Author:Khaja Minhajuddin (http://minhajuddin.com)
# Minor tweaks by Claus Witt (http://www.clauswitt.com)
# Some constants
TEMPLATE = "_template.markdown"
TARGET_DIR = "_posts"
# Get the title which was passed as an argument
title = ARGV[0]
# Get the filename
filename = title.gsub(' ','-')
filename = "#{ Time.now.strftime('%Y-%m-%d') }-#{filename}.markdown"
filepath = File.join(TARGET_DIR, filename)
# Create a copy of the template with the title replaced
new_post = File.read(TEMPLATE)
new_post.gsub!('TITLE', title);
# Write out the file to the target directory
new_post_file = File.open(filepath, 'w')
new_post_file.puts new_post
new_post_file.close
puts `mate #{filepath}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment