ember-tools
ember-tools copied to clipboard
Generators and build tools for Ember applications
``` C:\Users\Heavy\AppData\Roaming\npm\node_modules\ember-tools\node_modules\handlebars\lib\handlebars\compiler\parser.js:112 throw new Error(str); ^ Error: Lexical error on line 1. Unrecognized text. ```
If a model name passed to the scaffold generator is camel-cased; e.g.: ``` ember generate -s fooBar name:string value:integer ``` then the scaffold generator correctly generates foo_bar.js, foo_bar_controller.js, etc. But...
Scaffolding a _blog_ resource creates a _blogs_route.js_ file. Why isn't it named _blog_route.js_ instead? What, then, should the filename for a _blogs_ route be called? Example scaffolding code: ember generate...
While `App` is the usual name used for the Ember.Application instance, it would be nice if the developer could specify a different name and/or namespace for the Ember.Application. Usage could...
Helper generator should use `Ember.Handlebars.registerHelper` instead of `Ember.Handlebars.helper`
See https://github.com/emberjs/ember.js/issues/2820
use nested routes, index templates, and {{input}}.