diff options
author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-10-24 08:05:03 +0200 |
---|---|---|
committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-10-24 08:05:03 +0200 |
commit | 06e8c51a1a6256f4c627ba45b31623f7748366c6 (patch) | |
tree | a90bbce260b9db0289d7cb6fb770db3761cf422f | |
parent | a81ef5e28bc2abb846a2a3da04dd43aa7ca547a1 (diff) | |
download | my_new_personal_website-06e8c51a1a6256f4c627ba45b31623f7748366c6.tar.xz my_new_personal_website-06e8c51a1a6256f4c627ba45b31623f7748366c6.zip |
Set Liquid version explicitly to 2.2.2, fixes #243
Obviously Liquid 2.3.0 seems to cause problems, see:
http://www.yodi.me/blog/2011/10/24/github-custom-domain-with-octopress-in-ubuntu-oneiric-11-dot-10/
http://stackoverflow.com/questions/7801197/syntax-highlighting-with-pygments-is-failing-via-liquid-templates-string-error
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Gemfile.lock | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,7 @@ group :development do gem 'rubypants' gem 'rb-fsevent' gem 'stringex' + gem 'liquid', '2.2.2' end gem 'sinatra', '1.2.6' diff --git a/Gemfile.lock b/Gemfile.lock index 0ae80bc7..63506982 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -55,6 +55,7 @@ DEPENDENCIES compass (>= 0.11) haml (>= 3.1) jekyll + liquid (= 2.2.2) pygments.rb rack rake |