From d3bc87bb2e3383aa7a57790782a58ff34d1946b8 Mon Sep 17 00:00:00 2001 From: Santiago Calvo Date: Fri, 3 Jul 2026 07:32:00 -0300 Subject: [PATCH] fix: require chart_helper in engine to avoid boot failure with newrelic --- lib/trackplot/engine.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/trackplot/engine.rb b/lib/trackplot/engine.rb index 0bee3e4..87e759e 100644 --- a/lib/trackplot/engine.rb +++ b/lib/trackplot/engine.rb @@ -3,6 +3,7 @@ class Engine < ::Rails::Engine isolate_namespace Trackplot initializer "trackplot.helpers" do + require_relative "../../app/helpers/trackplot/chart_helper" ActiveSupport.on_load(:action_view) do include Trackplot::ChartHelper end