Guest User

Untitled

a guest
Jan 21st, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def change_my_password!(email, new_password)
  2. account = Account.where(:email => email).first
  3. raise 'ZOMGZ, Really?' if account.blank?
  4. account.password = 'cheese'
  5. account.save!
  6. end
  7.  
  8. change_my_password!('karl@disneyland.com', 'cheese_fun_fun183')
Add Comment
Please, Sign In to add comment