All Versions
5
Latest Version
Avg Release Cycle
612 days
Latest Release
1598 days ago

Changelog History

  • v1.2.1 Changes

    November 12, 2019
    • Fix HTML escaping when :layout is false.

      Anton Katunin

    • ๐Ÿš… Add support to Rails 6.

      Jacob Bednarz

  • v1.2.0 Changes

    January 23, 2017
    • ๐Ÿ‘ Support proc options with zero arguments

      Fixes #40.

      Andrew White

    • The options :layout and :cache_path now behave the same when passed a Symbol, Proc or object that responds to call.

      Andrew White

    • Respect Accept header when caching actions

      Fixes #18.

      Andrew White

    • ๐Ÿš… Support Rails 4.0, 4.1, 4.2, 5.0 and edge

      Eileen Uchitelle, Andrew White

    • Call to_s on the extension as it may be a symbol

      Fixes #10.

      Andrew White

  • v1.1.1 Changes

    January 02, 2014
    • Fix load order problem with other gems

      Andrew White

  • v1.1.0 Changes

    November 01, 2013
    • Allow to use non-proc object in cache_path option. You can pass an object that responds to a call method.

      Example:

      class CachePath
        def call(controller)
          controller.id
        end
      end
      
      class TestController < ApplicationController
        caches_action :index, :cache_path => CachePath.new
        def index; end
      end
      

      Piotr Nieล‚acny

  • v1.0.0 Changes

    February 28, 2013
    • ๐Ÿš… Extract Action Pack - Action Caching from Rails core.

      Francesco Rodriguez