Catching that the Redcarpet gem has been installed. Fixes #1059

This commit is contained in:
Parker Moore 2013-05-08 11:55:19 +02:00
parent 8bd14f18f6
commit 0c04e5d55b
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
### Major Enhancements
### Minor Enhancements
### Bug Fixes
* Catching that Redcarpet gem isn't installed (#1059)
### Site Enhancements
### Development Fixes

View File

@ -52,7 +52,7 @@ module Jekyll
include WithoutPygments
end
end
rescue LoadErro
rescue LoadError
STDERR.puts 'You are missing a library required for Markdown. Please run:'
STDERR.puts ' $ [sudo] gem install redcarpet'
raise FatalException.new("Missing dependency: redcarpet")