我不知道这个热门部署的标题是否正确。 我正在修改控制器和视图,我必须重新启动服务器才能查看这些更改。
为什么呢?我认为它没有像这样工作。 我正在使用webrick服务器。环境就是发展。
我正在使用Rails 3.1
答案 0 :(得分:3)
转到config / environments / development.rb并确保您拥有:
Railsapp::Application.configure do
config.cache_classes = false
# ...
end
在我看来,它带有这个解释性评论:
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
config.cache_classes = false