Detectar transições de rota em EmberJS 1.0.0-pre.4

Eu estou tentando detectar quando ocorre uma transição de rota. Eu localizei este trecho de código dentro da última versão do Ember (v1.0.0-pre.4) que lida com as transições:

  didTransition: function(infos) {
    // Don't do any further action here if we redirected
    if (infos[infos.length-1].handler.transitioned) { return; }

    var appController = this.container.lookup('controller:application'),
        path = routePath(infos);

    set(appController, 'currentPath', path);
    this.notifyPropertyChange('url');

    if (get(this, 'namespace').LOG_TRANSITIONS) {
      Ember.Logger.log("Transitioned into '" + path + "'");
    }
  },

Eu configurei meu aplicativo Ember comowindow.App = Ember.Application.create().

Notei que chamathis.notifyPropertyChange('url');, mas eu tentei anexar um observador ao meu aplicativoApp.Router ouApp.Router.router, Recebo um erro porque não implementaEmber.Observable.

Como posso detectar quando o caminho da rota é alterado sem criar uma Ember.Route especial para cada uma das minhas rotas?

questionAnswers(1)

yourAnswerToTheQuestion