From 70a331d8547e79454cdbc2e27da392cea30c499b Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Wed, 29 Oct 2014 15:04:35 -0700 Subject: [PATCH] Set the error mode to :strict --- Gemfile | 2 +- lib/jekyll.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index d680ef69..7c91f262 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' gemspec -gem "liquid", github: 'Shopify/liquid' +gem "liquid", github: 'Shopify/liquid', branch: '3-0-0-rc1' if ENV['BENCHMARK'] gem 'rbtrace' diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 911b3ddb..45c9a4d5 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -30,6 +30,7 @@ require 'kramdown' require 'colorator' SafeYAML::OPTIONS[:suppress_warnings] = true +Liquid::Template.error_mode = :strict module Jekyll