在我的应用程序中,我想覆盖已经在gem中可用的js文件。现在问题是我能够在开发中覆盖它并且它也能正常工作
但是在生产中它从gem调用js文件而不是从我的应用程序调用 我的应用
if (city!='' && state!='') {
$('#Location').val(city+', '+state).removeClass('defaultTextActive');
}
宝石
if (city!='' && state!=''&& pin!='') {
$('#Location').val(city+', '+state+','+pin).removeClass('defaultTextActive');
}
答案 0 :(得分:0)
试试这个
清除所有预编译资产,并使用以下rake任务重新生成它们。
rake assets:clean
rake assets:precompile RAILS_ENV=production