ember-tools icon indicating copy to clipboard operation
ember-tools copied to clipboard

Generators and build tools for Ember applications

Results 26 ember-tools issues
Sort by recently updated
recently updated
newest added

so far the tutorial on ember-tools is great. But how do I run the generated scaffolding with node?

I would like to move `app.js` and `routes.js` from the config folder to the root of javascripts folder next to views, controllers, models, helpers, etc. I think that makes more...

Use ember.prod.js when the flag is true

Hey guys, I wanted to install this on Windows 8 64 but in the middle of the installation I get some errors like in this screen http://grab.by/osE4 Then it continues...

So, this project is really awesome coming to Ember from Rails. Just wanted to get that out there. I ran this command: `ember generate --scaffold todo title:string complete:boolean` This correctly...

When i do: ``` ember --generate -vt Form/Base ``` A template is generated with the following name "form/base" which prevents the Ember View/Template magic. in my case I had to...

Hi, I don't know if you already use the runtime-only version, but since the templates are precompiled, isn't it useful to load the runtime-only version of Handlebars? See: http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars.runtime-v1.1.2.js

If I define a mixin and try and use it in a model the mixin is undefined on the App object when the model is defined. ``` var Serializable =...

I tried updating the ember-data.js file in /js/vendor to the latest 1.0.0-BETA.3. Unfortunately the generated app.js file and store.js no longer seems correct for the latest ember-data and I can't...

Where should I put global patches? For example, I would like this patch to apply to all views in my application: ``` Ember.View.reopen({ didInsertElement : function(){ this._super(); Ember.run.scheduleOnce('afterRender', this, this.afterRenderEvent);...