I'm getting the classic "eProvider <- e" upon minifying my angular code; obviously I recognize this as the issue when you don't specify modules to inject, e.g.:
angular.module("myModule").controller('MyCtrl', function ($scope, Organization, organizations) {});
But the problem is, I never write my angular code like that, specifically to avoid this issue. In fact, I can't seem to replicate it locally; only on Heroku (I'm using rails 4 and letting Rails's asset pipeline take care of minification).
Any thoughts on how I can go about finding out where this problem is happening? I have dozens of files, so it'd be tedious to go through each of them.
If it matters, I'm also using coffeescript.