I'm new to EmberJS and following this tutorial:
http://coding.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/
Currently I've this file structure:
index.html
static/js/app.js
static/js/compononents
static/js/controllers/usersController.js
static/js/handlebars-v1.1.2.js
static/js/helpers
static/js/models/user.js
static/js/router.js
static/js/routes/usersRoute.js
static/js/store.js
static/js/templates/application.hbs
static/js/templates/index.hbs
static/js/templates/user.hbs
static/js/templates/users.hbs
static/js/views/
Currently I've got all the code until the 'SINGLE USER ROUTE'-part.
I've exactly followed the tutorial, but when I go http://ember.lusenet.com/#/users , I get the error 'Assertion failed: The URL '/users' did not match any routes in your application'. I really don't know what's going wrong. Any help is appreciated!