redcarpet does not support ruby 1.8.7 anymore

This commit is contained in:
Patricio Mac Adden 2013-08-16 14:11:24 -03:00
parent 9a434fe90c
commit 04042bc52e
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ unless RUBY_ENGINE =~ /jruby|maglev/
end
gem 'wlang', '>= 2.0.1' unless RUBY_ENGINE =~ /jruby|rbx/
gem 'therubyracer' unless RUBY_ENGINE =~ /jruby|rbx/
gem 'redcarpet' unless RUBY_ENGINE == 'jruby'
gem 'redcarpet' unless RUBY_ENGINE == 'jruby' || RUBY_VERSION == '1.8.7'
gem 'bluecloth' unless RUBY_ENGINE == 'jruby'
if RUBY_ENGINE != 'rbx' or RUBY_VERSION < '1.9'
@ -73,7 +73,7 @@ if RUBY_ENGINE != 'jruby' or not ENV['TRAVIS']
# C extensions
gem 'rdiscount' if RUBY_VERSION != '1.9.2'
platforms(:ruby_18) do
gem 'redcarpet'
#gem 'redcarpet'
gem 'mongrel'
end
gem 'RedCloth' unless RUBY_ENGINE == "macruby"