Reputation: 509
This question shows my problem, but there was no real answer given. Is there a way to simply turn off the automatic debug output in Rails?
Upvotes: 0
Views: 485
Reputation: 509
I found the issue. I had written this:
- flash.each do |key, value|
instead of
= flash.each do |key, value|
Subtle difference, but it makes all the difference.
Upvotes: 2