Guest User

Untitled

a guest
Feb 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class User < ActiveRecord::Base
  2. def password=(pword)
  3. @password = pword.crypt("gs")
  4. $stderr.print("Password is "+@password+"\n")
  5. @password
  6. end
  7. end
Add Comment
Please, Sign In to add comment