我已经安装了livereload gem,我正在使用ruby中间人应用程序。但是,它只对css进行自动加载更改。如果我对html文件进行了更改,我仍然需要重新启动服务器才能查看更改。有什么方法我可以自动加载html更改吗?
答案 0 :(得分:2)
似乎此功能不适用于所有版本的livereload,也取决于浏览器及其扩展名。更改html时尝试也更改css文件,以便进行刷新。另外,你看过https://github.com/guard/guard-livereload了吗?这是一个观察html变化的例子。
guard 'livereload' do
watch(%r{app/views/.+\.(erb|haml|slim)})
watch(%r{app/helpers/.+\.rb})
watch(%r{public/.+\.(css|js|html)})
watch(%r{config/locales/.+\.yml})
# Rails Assets Pipeline
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
end