By default, when generating a widget scaffold, rails will send JSON down in a GET request like this:
{"name": "foo", "size": 5}
But will expect it sent up in a PATCH request like this:
{"widget": {"name": "foo", "size": 5}}
Anyone know the history/rational behind this?