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?