lib/hotcell/config.rb in hotcell-0.1.0 vs lib/hotcell/config.rb in hotcell-0.2.0

- old
+ new

@@ -3,16 +3,17 @@ module Hotcell class Config include Singleton attr_reader :commands, :blocks, :helpers - attr_accessor :resolver + attr_accessor :resolver, :escape_tags def initialize @commands = {} @blocks = {} @helpers = [] @resolver = Hotcell::Resolver.new + @escape_tags = false end # Adds command or block to the list of default commands or blocks returned # by `Hotcell.commands` and `Hotcell.blocks` accessors respectively #