1

I am looking to do page caching with Rails 5, but the gem (actionpack-page_caching) doesn't seem to be Rails 5 supported yet.

What alternatives do I have?

Cheers, Andrew

Andrew Cetinic
  • 2,805
  • 29
  • 44

1 Answers1

2

The gem actionpack-page_caching has a different branch that can be used for rails 5 compatibility.

Please replace gem 'actionpack-pack-page_caching' with gem 'actionpack-page_caching', git: 'https://github.com/kord-as/actionpack-page_caching', branch: 'rails5' to install the compatible version.

For more details refer to this issue -> Rails 5 Support #31

Ashishkumar Pandey
  • 197
  • 1
  • 2
  • 14