Shorthand alternative for respond_to
If you have a simple respond_to block in your controller that looks like this:
respond_to do |format|
format.html
format.xml
end
You can use this alternate syntax and save a few keystrokes..
The following entries are tagged with “shorthand”:
If you have a simple respond_to block in your controller that looks like this:
respond_to do |format|
format.html
format.xml
end
You can use this alternate syntax and save a few keystrokes..