trying to add new users , using the devise gem ran rake db:migrate and ran the rails server again
but when i type in 3000/posts/sign_up
it gives me the defa
The main problem is here
NoMethodError (undefined method `encrypted_password=' for #):
Check out you migration file. Is encrypted_password present or not? Do you have this t.string :encrypted_password, :null => false, :default => ""
line of code in your migration file. And in your model file (i.e post.rb) you haven't define password attribute too.