aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/cache_helper.rb
blob: 9353e5a6942ebd307254ebc9b9717d9039e0c890 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module ActionView
  module Helpers
    # See ActionController::Caching::Fragments for usage instructions.
    module CacheHelper
      def cache(name = {})
        @controller.cache_erb_fragment(binding, name) { yield }
      end
    end
  end
end