Exmaple of a class with three mixins:
Object = Ember.Object.extend( mixin1, mixin2, mixin3 {
init: function(){
this._super();
var myMixins = this.gatherMixins();
},
gatherMixins: function(){
// what goes in here?
}
});
you can just do this:
Fiddle
the following peace of code lists all properties of your mixins