method

fragment_for

rails latest stable - Class: ActionController::Caching::Fragments

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

fragment_for(buffer, name = {}, options = nil, &block)
public

No documentation available.

# File actionpack/lib/action_controller/caching/fragments.rb, line 37
      def fragment_for(buffer, name = {}, options = nil, &block) #:nodoc:
        if perform_caching
          if cache = read_fragment(name, options)
            buffer.safe_concat(cache.html_safe)
          else
            pos = buffer.length
            block.call
            write_fragment(name, buffer[pos..-1], options)
          end
        else
          block.call
        end
      end