我使用 Rails 3.2 内置的 sprockets 功能来编译静态资产。是否可以使用环境特定变量编译 javascript?
所以我想做这样的事情
/assets/javascripts/myfile.js
//lots of code
script.src =
('https:' == document.location.protocol ? 'https://' : 'http://') +
'some.metrics.site/projects/<%=ENV_SPECIFIC_TOKEN%>.js';
//lots of other code