I have followed the #209 tutorial of railscast http://railscasts.com/episodes/209-introducing-devise?view=asciicast. It was working good until I tried to generate the devise views to customize it (tutorial #210 of railscast)
I did :
rails generate devise:views
rails generate devise_views
Got the following error :
NameError: uninitialized constant View
I am using rails 3.1.3, & devise 1.4.7 with warden 1.0.6. Any ideas ?
Tks Matt
You can find out a list of all the generators by running
rails generate
orrails g
The correct generator is:
I can only think that you are having some sort of version conflict.
Does the following work:
If not, have you already run: