aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/cache_helper.rb
blob: ca5a746c26cc7e8c29e3fbc87e308c24796b202f (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionView
  module Helpers
    module CacheHelper
      def cache(binding, name, key = nil)
        @controller.cache_fragment(binding, name, key) { yield }
      end
    end
  end
end