I'm using ember-rails master and created a ember bootstrap project. Everything is empty and left as it was when creating, yet I'm running into the mentioned type error. when the router is entered. The namespace is known, but the router isn't. Has anybody seen this before?
For the sake of completeness I'll past what is there below:
Basis.ApplicationController = Ember.Controller.extend({
});
Basis.ApplicationRoute = Ember.Route.extend({
});
Basis.js:
//= require ./store
//= require_tree ./models
//= require_tree ./controllers
//= require_tree ./views
//= require_tree ./helpers
//= require_tree ./templates
//= require ./router
//= require_tree ./routes
//= require_self
Basis.Router.map(function(match) {
});
Basis.Store = DS.Store.extend({
revision: 11
});
application.handlebars:
Application
<p>Your content here.</p>
{{outlet}}
application.js
//= require jquery
//= require jquery_ujs
//= require bootstrap
//= require handlebars
//= require ember
//= require ember-data
//= require_self
//= require basis
Basis = Ember.Application.create();
//= require_tree .