I have a simple page that displays some 'Games'.
Heres the code:
<ul>
<%= @tvshow.games.each do |game| %>
<li><%= game.gameTitle %></li>
<% end %>
</ul>
It displays like this:
The All-Syrup Squishee
#<Game:0xb6783820>
With the #Game tag coming AFTER the list item but before the closing list tag. Any idea why it's showing up or how I could get rid of it?
gameTitletogame_title, as camelCase variable and method names are discouraged in Ruby – Jakub Arnold Jan 8 at 19:40