From b9597b548cb62e3863cdc0ecc1571898f8ea5192 Mon Sep 17 00:00:00 2001 From: Umair Choudhary Date: Tue, 10 Sep 2019 15:11:21 -0400 Subject: [PATCH] Add render time attr to profiler --- lib/liquid/profiler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/liquid/profiler.rb b/lib/liquid/profiler.rb index dc9db60..51286c2 100644 --- a/lib/liquid/profiler.rb +++ b/lib/liquid/profiler.rb @@ -66,7 +66,7 @@ module Liquid end def render_time - @end_time - @start_time + @render_time = @end_time - @start_time end end