Undefined method `fragment_cache_store=' Ruby on Rails error

Posted on 28 April 2009

The variable fragment_cache_store has now been replaced with just cache_store.

So in my case I changed:

ActionController::Base.fragment_cache_store = :file_store, "#{RAILS_ROOT}/tmp/cache"

To:

ActionController::Base.cache_store = :file_store, "#{RAILS_ROOT}/tmp/cache"

Got something to say?