Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. module ActionController
  2. module Caching
  3. module Fragments
  4.  
  5. def read_fragment_with_comment(name, options)
  6. fragment = read_fragment_without_comment(name, options)
  7. fragment && "\n<!-- cache-hit: #{name} -->\n#{fragment}\n<!-- /cache-hit: #{name} -->\n" || nil
  8. end
  9. alias_method_chain :read_fragment, :comment
  10.  
  11. end
  12. end
  13. end
Add Comment
Please, Sign In to add comment