User Authentication in Rails:
*has secure password
rails generate model User email:string password_digest:string
class User < ActiveRecord::Basehas_secure_passwordend
Now you can create a new user with password
user = User.new email: 'bob@bob.com', password: 'Password1', password_confirmation: 'Password1'
Verify password with authenticate method
user.authenticate('somepassword')