search for: templateparser

Displaying 1 result from an estimated 1 matches for "templateparser".

2007 Jul 21
0
ERB help. not seeing variables?
This isn''t for rails specifically.. I''m trying to do some ERB operations.. I''m trying to do some template parsing in a class.. here is my class: require ''erb'' class TemplateParser def TemplateParser.parse(template, params) params.each do |k,v| self.instance_variable_set(:"@#{k}",v) end template_content = '''' File.open(template, "r") do |f| while line = f.gets template_content << line end...