Last active
August 29, 2015 14:09
Revisions
-
talbright revised this gist
Nov 14, 2014 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ action_base = ActionController::Base.new key = "en/handlebars_ticket_filter_show_v2/ssl:false" action_base.fragment_exist?(key) action_base.read_fragment(key) action_base.fragment_cache_key(key) # shows how Rails modifies the key before storage see ActiveSupport::Cache.expand_cache_key -
talbright created this gist
Nov 14, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ action_base = ActionController::Base.new action_base.fragment_exist?("en/handlebars_ticket_filter_show_v2/ssl:false") action_base.read_fragment("en/handlebars_ticket_filter_show_v2/ssl:false")