I have a coffee script user.js.coffee
, that is only used in certain views. I achieved this by using the following answer:
https://stackoverflow.com/a/6795533/784318
Now I have excluded the script from the application.js
. I also removed the //= require_tree .
entry.
So my file is available here: http://localhost:3000/assets/user.js
however, when I deploy this to the server the assets will be combined in one application.js
so how can I make sure that the user.js will be available on production like so: http://myserver.com/assets/user.js
?