From f28916453dfb0c399f35b6a2d17e1596b0594d14 Mon Sep 17 00:00:00 2001 From: meyric Date: Fri, 23 Feb 2024 14:03:26 +0000 Subject: [PATCH] Fix bin/console Adding ActionMailer to the console command will allow it to start at least. --- bin/console | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/console b/bin/console index bbc53d3..4e9c792 100755 --- a/bin/console +++ b/bin/console @@ -2,6 +2,7 @@ # frozen_string_literal: true require 'bundler/setup' +require 'action_mailer' require 'mail/notify' # You can add fixtures and/or initialization code here to make experimenting