diff options
author | Noah Silvera <noah@super.gd> | 2021-03-10 10:52:03 -0800 |
---|---|---|
committer | Noah Silvera <noah@super.gd> | 2021-03-10 10:52:03 -0800 |
commit | 9f7b933dbe9f54ec6931fa20fcbca88138b792b4 (patch) | |
tree | 5eefaad6f1f5371cc43a13609ccc3497b5ca7a9a /lib/super_good | |
parent | 9f599f2c1c4953c328305b7736833f51df816cad (diff) |
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 <nick@super.gd>
Diffstat (limited to 'lib/super_good')
-rw-r--r-- | lib/super_good/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |