# # File 'erb.rb' created on 23 lug 2008 at 15:40:59. # # See 'dokkit.rb' or +LICENSE+ for licence information. # # (C)2006-2008 Andrea Fazzi (and contributors). # require 'erb' module Dokkit module Filter class ERB def initialize(binding) @binding = binding end def filter(text) ::ERB.new(text).result(@binding) end end end end