From 611b0cc3f35a503785ffca7f48756fa0cb7474e6 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Wed, 12 Nov 2008 14:38:53 -0600 Subject: [PATCH] Plugin classes should be eager loaded so the plugin works in multi-threaded mode. --- vendor/plugins/exception_notification/init.rb | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/vendor/plugins/exception_notification/init.rb b/vendor/plugins/exception_notification/init.rb index b39bd95..b1dd2d9 100644 --- a/vendor/plugins/exception_notification/init.rb +++ b/vendor/plugins/exception_notification/init.rb @@ -1 +1,4 @@ require "action_mailer" +require 'exception_notifier' +require 'exception_notifiable' +require 'exception_notifier_helper' -- 1.6.0.2