Skip to content

Instantly share code, notes, and snippets.

@erdemtu
erdemtu / Rakefile
Last active August 29, 2015 14:27
A Rakefile for making a few jekyll and github-pages tasks easier. v0.1
require 'time'
# Get and parse the date
DATE = Time.now.strftime("%Y-%m-%d")
POST_TIME = Time.now.strftime("%Y-%m-%d %H:%M:%S %z")
desc 'create a new post'
task :post, :title do |t, args|
title = args[:title]
slug = "#{DATE}-#{title.downcase.gsub(/[^\w]+/, '-')}"