Reputation: 29
I'm new to ROR, I have recently included DEVISE into my Rails project but accidentally I ran a wrong command as follows:
rails g devise install
After that rails starting showing errors and not working, even the server is not running now.
Here's a screenshot showing the number of errors I'm getting and their details:
Now even the normal command for installing devise, i.e. devise:install is not working.
Upvotes: 0
Views: 149
Reputation: 901
Does this command work for you? rails destroy devise:install
This should delete your Devise configuration.
Upvotes: 2