Flowdock
method

fragment_for

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionController::Caching::Fragments
fragment_for(buffer, name = {}, options = nil, &block) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.