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
| desc 'Generate tags page' | |
| task :tags do | |
| puts "Generating tags..." | |
| require 'rubygems' | |
| require 'jekyll' | |
| include Jekyll::Filters | |
| options = Jekyll.configuration({}) | |
| site = Jekyll::Site.new(options) | |
| site.read_posts('') |
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
| Forked from Noah Sloan's simple http server at http://gist.github.com/246761 |