Add optional resource usage limitations to number of rendering calls, length of rendering output and/or number of variable/capture assignments

This commit is contained in:
Florian Weingarten
2013-05-30 17:04:26 -04:00
parent 50b2ebee56
commit 8760b5e8c4
7 changed files with 56 additions and 14 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
module Liquid
class Error < ::StandardError; end
class ArgumentError < Error; end
class ContextError < Error; end
class FilterNotFound < Error; end
@@ -8,4 +8,5 @@ module Liquid
class StandardError < Error; end
class SyntaxError < Error; end
class StackLevelError < Error; end
class MemoryError < Error; end
end