Guest User

Untitled

a guest
Mar 8th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class User
  2. def self.login(username, password)
  3. find(:first, :conditions => ["username = ? AND password = ?", username, password])
  4. rescue
  5. nil
  6. end
  7. end
  8.  
  9. require 'parse_tree'
  10.  
  11. p ParseTree.translate(User)
Add Comment
Please, Sign In to add comment