I'm using YUIdoc. Anything else ? Well could anyone tell me how to properly document a model, a controller, a mixin and a view in Ember ?
For example I'm trying to document this:
App.newModel = DS.Model.extend({
someProperty: DS.attr('string')
});
App.myController = Ember.Controller.extend({
someProperty: ...
});
App.myMixin = Ember.Mixin.create({
someProperty: ...
});
EDIT I'm now using YUIdoc instead of jsdoc3
You're going to have a hard time using JSDoc for Ember applications because JSDoc parses code and not just comments. Ember uses their own class-like syntax, so JSDoc isn't going to be able to recognize a lot of the code. I personally use YUIDoc, which is what the Ember team uses. (YUIDoc also allows you to import other documentation to resolve external references, like
DS.Model
.) There are other alternatives though. This page does some comparison, and gives you a difference chart that shows you which tools parse comments rather than source code.Also, I realize that I am not answering your specific question. But this should help answer the question of what alternatives are out there, which may eliminate your JSDoc question altogether.