Search code examples
ruby-on-railsarraysruby-on-rails-3quoteshtml-safe

Messy &quot returned from Rails 3 controller to view


On my Rails 3 app controller I have the following code:

array = []
Location.all.each{|x|array<<x.city.html_safe}
@data_dump = array

In the Rails console it looks nice and clean:

["Littelside", "Tessmouth"]

In my view the @data_dump object gets encoded:

[&quot;Littelside&quot;, &quot;Tessmouth&quot;]

How do you clean this mess up? I want my object in view, to return as the object does in terminal. Thanks in advance!


Solution

  • What about:

    <%=raw @data_dump %>