Move require to jekyll.rb and update history.

This commit is contained in:
Tom Preston-Werner 2011-03-10 21:15:29 -08:00
parent 5f4dfe388f
commit a31780a1ec
3 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,7 @@
* Minor Enhancements * Minor Enhancements
* Switch to Albino gem * Switch to Albino gem
* Bundler support * Bundler support
* Use English library to avoid hoops (#292)
* Bug Fixes * Bug Fixes
* Secure additional path exploits * Secure additional path exploits

View File

@ -19,6 +19,7 @@ require 'rubygems'
require 'fileutils' require 'fileutils'
require 'time' require 'time'
require 'yaml' require 'yaml'
require 'English'
# 3rd party # 3rd party
require 'liquid' require 'liquid'

View File

@ -1,5 +1,3 @@
require "English"
# Convertible provides methods for converting a pagelike item # Convertible provides methods for converting a pagelike item
# from a certain type of markup into actual content # from a certain type of markup into actual content
# #