Guest User

Untitled

a guest
Jan 2nd, 2018
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. user = User.new(name: 'anuj', password: '')
  2. user.save # => false
  3. # Method to set password
  4. user.password = '1xedf32hgt'
  5. user.save # => true
  6. # Method to authenticate against a password
  7. user.authenticate('wrong_password') # => false
  8. user.authenticate('1xedf32hgt') # => user object
Add Comment
Please, Sign In to add comment