Skip to content

Instantly share code, notes, and snippets.

@minhajuddin
Created September 30, 2010 17:48
Show Gist options
  • Save minhajuddin/604999 to your computer and use it in GitHub Desktop.
Save minhajuddin/604999 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# Script to create a jekyll blog post using a template. 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)
# 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 "created => #{filepath}"
@minhajuddin
Copy link
Author

a couple of things which can improved in this:

  • Add some error handling
  • Accept an optional second argument which would be the number of days after which this article would be published
    e.g. ./new.rb "futurustic article" 10
    That should create a file with the timestamp 10 days from now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment