From 9f7b933dbe9f54ec6931fa20fcbca88138b792b4 Mon Sep 17 00:00:00 2001 From: Noah Silvera Date: Wed, 10 Mar 2021 10:52:03 -0800 Subject: Update the engine name Once we add an install generator with migrations, having an engine name with a dash in it will cause the migration generation to fail, as migrations will be created with the engine name in it, and dashes are not allowed. Co-authored-by: Nick Van Doorn --- lib/super_good/engine.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/super_good/engine.rb b/lib/super_good/engine.rb index a73edd5..90f6a6e 100644 --- a/lib/super_good/engine.rb +++ b/lib/super_good/engine.rb @@ -3,6 +3,6 @@ module SuperGoodSolidusTaxjar class Engine < Rails::Engine isolate_namespace Spree - engine_name 'super_good-solidus_taxjar' + engine_name 'super_good_solidus_taxjar' end end -- cgit v1.2.3