how can i change templating engine to normal from slim

I created an app without ever invoking rails new ... because i copied and pasted another app to begin building the app Now when I run the generator it generates slim templates How do I make it generate ordinary html.erb templates instead?

Remove gem 'slim-rails' from your Gemfile and run bundle install.

Yea I searched my Gemfile but I missed it Found it after I posted I realize now that it may need to be installed as a dep, for what i dunno, but it was in my Gemfile, I’ll leave it installed but not in my Gemfile

Whether it is installed or not is irrelevant, what matters is whether it is in your Gemfile and Gemfile.lock. The reason it had been installed was because it was in the Gemfile, not the other way round (unless you installed it manually).

Colin