Sprockets gem caches .erb files even though the ruby code in those might evaluate differently on every compilation

For example: foo.js.erb

var foo = <%= Kernel.rand %>;

evaluates it once and caches forever. How do you prevent certain files like this from being cached by sprockets?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You could separate your JavaScript into libraries (.js.erb or just .js) and configuration data (such as your var foo). Then leave all the library code in the hands of Sprocket and put your configuration into your normal ERB views (probably embedded in your layouts).

You could also serve the configuration data through a separate controller (/config.js perhaps) if that fits your architecture better.

This approach avoids your whole problem by separating static libraries from non-static data. Also, this approach fits nicely with the Rails 3.1 asset pipeline where you're supposed to pre-compile everything before your production deployments.

link|improve this answer
Yeah I'm not in a Rails app though. This is just html, js and sprockets. I found a workaround that avoids having js.erb files. But inside a Rails app, yes, your solution seems right. – ulver Oct 4 '11 at 23:04
feedback

Your Answer

 
or
required, but never shown

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