From df053a79535de167d6da3aadef36c121854b7c3f Mon Sep 17 00:00:00 2001 From: Pat Nakajima Date: Sat, 28 Feb 2009 19:24:47 -0500 Subject: [PATCH] Include cache in FlashHash#inspect --- lib/rack/flash.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rack/flash.rb b/lib/rack/flash.rb index 73b7af1..1ce58b9 100644 --- a/lib/rack/flash.rb +++ b/lib/rack/flash.rb @@ -61,7 +61,7 @@ def sweep! # Hide the underlying :__FLASH__ session key and only expose values stored # in the flash. def inspect - '#' % [values.inspect] + '#' % [values.inspect, cache.inspect] end # Human readable for logging.