Ruby Rendering Specific Variable

130 Views Asked by At

I have a template which contains various variables for rendering.

Is there a way i can render specific variables in the template without exception.

e.g. template_content = "My name is <%=firstname%>. I live at <%=location%>"

variable_hash = {firstname: "eric"}

Erubis::Eruby.new(template_content).result(variable_hash)  

Expected Output:

   "My name is eric. I live at <%=location%>"   

My use case is render with first variable and get the rendered content.

However when i run above code it gives exception: "undefined local variable or method location"

I am using Erubis for rendering. I am fine with ERB rendering also. Needs to render with ruby script only.

Any way to make it work?

1

There are 1 best solutions below

0
On
module MyModule
  def method_missing(method_name)
    super
    rescue NameError => e
     return method_name
  end
end

eb = Erubis::Eruby.new('My name is <%=firstname%>. I live at <%=location%>')
eb.extend(MyModule)
result = eb.result(:firstname =>'Ab')
puts result

Not sure if this is a good solution, there may be better solutions for this.