I\'ve written up an application that uses Ember Data. It\'s passing all it\'s tests and running as expected, however, something is causing a repeated deprecation warning to
It's always good to consider deprecations, but if you want to just turn them off entirely add the following 2 lines to your main app.js file.
Ember.deprecate = function(){}; Ember.warn = function(i){};