我将我的 development.rb 配置为不缓存类,但是为什么它仍然缓存并且当我进行更改(例如添加 binding.pry 和 puts,除非我再次 ctrl+c 和 rails s)时它没有更新。
我主要在 EditorHub::ArticlesController 类中进行开发,也许是因为命名空间?
知道为什么会这样吗?
rails s
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
#development.rb
CMS::Application.configure do
config.cache_classes = false
end
#application.rb
config.autoload_paths += %W(#{config.root}/lib)