Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to have Rails produce source maps alongside the compiled coffeescript/minified JS, for better error logging. There doesn't seem to be comprehensive documentation on the net on how to do this, yet, though. Has anyone done this?

I'm on Rails 3.2 and Heroku.

share|improve this question
source map - what is it? – okliv Jan 30 at 1:34
Source maps are a way of mapping obfuscated/compiled/compressed source code back to its original form. html5rocks.com/en/tutorials/developertools/sourcemaps – akanet Jan 30 at 1:51
did you see or hear if it is possible at all for now (in RoR development environment)? – okliv Jan 30 at 1:59
There has been mention of this being possible in edge rails, and I have seen some hacks for coffeescript maps only. – akanet Jan 30 at 2:01
hm... interesting... for now i just use "Reformat Code" feature in my IDE RubyMine. It reformats code to semi-readable state (return rows and tabs basically)... but, of course, it becomes not the same as original was – okliv Jan 30 at 2:06

1 Answer

This looks like it should work: http://alexspeller.com/2012/09/15/Source_maps_for_coffeescript_in_rails.html

Though, keep in mind the warning at the end:

Important Note: this rather brutal hack replaces the normal coffeescript compiler by shelling out to the CoffeeScriptRedux compiler, which is not in fact finished. This is just a proof of concept, you probably shouldn’t use it.

So I wouldn't recommend running this in production, but if you have a staging environment (also on Heroku, also with minified Javascript) it might be useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.