Your using <%= %> where you need <% %>. Since each returns the object it iterated over, once you are done iterating over updates, updates is returned and output to the HTML
<% @cause.updates.each do |update| # remove the = at the beginning of this line %>
<% end %>