1. 17 8月, 2014 1 次提交
    • J
      When your templates change, browser caches bust automatically. · 6c96602b
      Jeremy Kemper 提交于
      New default: the template digest is automatically included in your ETags.
      When you call `fresh_when @post`, the digest for `posts/show.html.erb`
      is mixed in so future changes to the HTML will blow HTTP caches for you.
      This makes it easy to HTTP-cache many more of your actions.
      
      If you render a different template, you can now pass the `:template`
      option to include its digest instead:
      
        fresh_when @post, template: 'widgets/show'
      
      Pass `template: false` to skip the lookup. To turn this off entirely, set:
      
        config.action_controller.etag_with_template_digest = false
      6c96602b
  2. 15 8月, 2014 1 次提交
  3. 14 8月, 2014 14 次提交
  4. 13 8月, 2014 1 次提交
  5. 12 8月, 2014 1 次提交
  6. 09 8月, 2014 3 次提交
  7. 08 8月, 2014 1 次提交
    • R
      Retrieve source code for the entire stack trace · 1ed264bc
      Ryan Dao 提交于
      Provide the ability to extract the source code of the entire exception stack
      trace, not just the frame raising the error. This improves debugging
      capability of the error page, especially for framework-related errors.
      1ed264bc
  8. 07 8月, 2014 2 次提交
  9. 05 8月, 2014 1 次提交
  10. 04 8月, 2014 2 次提交
  11. 02 8月, 2014 3 次提交
  12. 01 8月, 2014 9 次提交
  13. 31 7月, 2014 1 次提交