I have the following line in my erb template:
SetEnv <%= name %> <%= value %>
The output from this line looks like this...
SetEnv SomeNameSomeValue
There is no whitespace between the name and value items. I want it to output this:
SetEnv SomeName SomeValue
I've found lots of articles explaining how to get erb files to strip unwanted whitespace, but I want the whitespace. How do I get the whitespace to stay in place?