restgen
restgen copied to clipboard
Feature: conform URL syntax to Ember data REST format
Ember assumes the format given here for it's REST interface http://emberjs.com/guides/models/the-rest-adapter/#toc_url-conventions
Action HTTP URL Find GET /people/123 Find All GET /people Update PUT /people/123 Create POST /people Delete DELETE /people/123
more or less the same as here except it assumes the format=.json if restgen comformed to this, it would provide easy RESTful backend for ember data. It could possibly be implemented as an option on model/controller generators.
I will check and inform you soon.