Posting here as requested original post can be found here Hello, I would like to build ember.js using Ubuntu 13. I have cloned the official Github project, cd into the project and as described in the readme file I did: bundle install rake dist no error is shown on screen and as a result I get a directory shown in the image
I would like to use ember and ember-data, so I include ember.js ember-data-deps.js files in my test project. The problem is that I am getting a TypeError: App.Router is undefined I am using this at my client.js file to init ember
this.App = Ember.Application.create();
App.Router.map(function() { this.route('contributors'); this.route('contributor', {path: '/contributors/:contributor_id'}); });
Am I doing something wrong in the build process? Should I include some other js files in my project? Thank you in advanced.