Rails 3 has a nice feature to save writing flashes on a separate line:
redirect_to @product, :notice => "Successfully created product."
It would be great with respond_with, but not supported. Any way to override respond_with to take an optional flash hash?
respond_withmade so because it will output on different types of content. For example, what form should have flash message in XML or JSON formats? Also, you could userenderandredirect_toinsiderespond_withblock. See docs. – Mark Guk Dec 23 '11 at 12:49