This file contains hidden or 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
# Jekyll Rake tasks | |
desc 'create new post or page. args: type (post, page), title, future (# of days), layout' | |
# rake new type=(page|post) future=0 title="New post title goes here" slug="slug-override-title" layout="post" | |
task :new do | |
require 'rubygems' | |
require 'chronic' | |
type = ENV["type"] || "post" | |
title = ENV["title"] || "New Title" |