i've tried using but it keeps on adding double quotes which results to the html page literally printing out in my html. Here is my sample code:
helper.rb
def available_options
["test1 | test222 ", "test1 | test222 ", "test1 | test222 "]
end
and in my view:
= f.select, options_for_select(available_options)
is there a way to render this thing properly? I've tried raw and html_safe to no avail.