I have a Rails 3 application and I want to print in the view the request parameters. How do I do it?
Edit:
The purpose is to see what is being sent in a Form
I would use debug(params). That will give you a nicely formatted view of them.
debug(params)