Given the following each block
<%@variables.each do | index, value |%>
<%= 'export ' + index.upcase %>=<%= value.upcase%>
<%= 'export ' + index.downcase %>=<%= value.downcase%>
<%end%>
I need it to render like this.
however it is rendering like this
what am i missing?