Upgrading RedCloth to 4.2.1, which fixed <notextile> tags

This commit is contained in:
Nick Quaranto 2009-06-24 07:53:13 -04:00
parent 74b17ff777
commit 237df13778
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ h2. Diving In
h2. Dependencies
* RedCloth 4.1.0: Textile support. This version obeys @notextile@ tags. The latest version will still work, but tests will fail.
* RedCloth: Textile support.
* Liquid: Templating system
* Classifier: Generating related posts
* Maruku: Default markdown engine

View File

@ -15,7 +15,7 @@ begin
s.rubyforge_project = "jekyll"
s.files.exclude 'test/dest'
s.test_files.exclude 'test/dest'
s.add_dependency('RedCloth', '= 4.1.0')
s.add_dependency('RedCloth', '>= 4.2.1')
s.add_dependency('liquid', '>= 1.9.0')
s.add_dependency('classifier', '>= 1.3.1')
s.add_dependency('maruku', '>= 0.5.9')

View File

@ -1,5 +1,5 @@
require 'rubygems'
gem 'RedCloth', '= 4.1.0'
gem 'RedCloth', '= 4.2.1'
require File.join(File.dirname(__FILE__), *%w[.. lib jekyll])