In order to debug javascript in my heroku production environment, I need to disable asset compression (or at least compression of javascript). I tried config.assets.c
Also worth noting... In addition to ncherro solution you will need to do the following:
rake assets:clean
to clean your existing assets.rake assets:precompile
to compile your assets using the new compressor.touch tmp/restart.txt
Happy debugging ;)