Martin
Martin

Reputation: 509

Turning off automatic debug output in Rails

Debug output in all views

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

Answers (1)

Martin
Martin

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

Related Questions