I am reading chapter 13 in Rails 3 in Action and I use a hash :methods => "last_ticket" in the respond_with method. However I don't understand what this does and where I find what options I can pass to respond_with. Can somebody tell me where I find it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
This doc api.rubyonrails.org/classes/ActionController/Responder.html explains about custom options that you can pass into respond_with. Excerpt from the doc:
In your case, I believe result of the successful request will be passed onto a method called "last_ticket"(defined in the same controller). This tutorial shows you some practical use as well as the meaning of respond_with What's New in Edge Rails: Cleaner RESTful Controllers w/ respond_with Hope it helps |
|||
|
|