From d948e0da91b756f5736298d7e6b6d90ec7fb9dfc Mon Sep 17 00:00:00 2001 From: Nick Quaranto Date: Wed, 6 May 2009 12:05:11 -0700 Subject: [PATCH] Removing RedCloth gem lock and adding notes in for deps --- README.textile | 9 +++++++++ lib/jekyll.rb | 1 - test/test_tags.rb | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.textile b/README.textile index aa10f717..ea355c26 100644 --- a/README.textile +++ b/README.textile @@ -19,6 +19,15 @@ h2. Diving In * Customize the "Permalinks":http://wiki.github.com/mojombo/jekyll/permalinks your posts are generated with * Use the built-in "Liquid Extensions":http://wiki.github.com/mojombo/jekyll/liquid-extensions to make your life easier +h2. Dependencies + +* RedCloth 4.1.0: Textile support. This version obeys tags. The latest version will still work, but tests will fail. +* Liquid: Templating system +* Classifier: Generating related posts +* Maruku: Default markdown engine +* Directory Watcher: Auto-regeneration of sites +* Open4: Talking to pygments for syntax highlighting + h2. License (The MIT License) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index fa2eb62f..03366935 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -12,7 +12,6 @@ require 'yaml' # 3rd party require 'liquid' -gem 'RedCloth', '= 4.1.0' require 'redcloth' # internal requires diff --git a/test/test_tags.rb b/test/test_tags.rb index 01db31df..0c3caa6d 100644 --- a/test/test_tags.rb +++ b/test/test_tags.rb @@ -85,6 +85,7 @@ CONTENT create_post(@content, {}, false) end + # Broken in RedCloth 4.1.9 should "not textilize highlight block" do assert_no_match %r{3\.\.2\.\.1\.\."
}, @result end