I'm pretty new to Ember.js and while developing an app I just found out about the new router API. which was merged and has no documentation at all (except for this - https://gist.github.com/3981133)
I have no idea about how to even start converting my app to the new router API. this "walkthrough" doesn't help much.
1) how do I connect templates to named outlets, for example {{outlet main}} ?
2) I use App.router.someController and App.router.get('store').findAll() and .find() all over, what should those be replaced with ?
3) is there any change to the handlebars tag in html <script type="text/x-handlebars" data-template-name="templateName"> ?
that all I can think for now..