aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/cache_helper.rb
blob: 530e38e81c71ee97b015b3c63ff6a0eda7f5b4ec (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(binding, name, key = nil)
        @controller.cache_erb_fragment(binding, name, key) { yield }
      end
    end
  end
end