Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class User
  2. # By including Mack::Distributable this class will now
  3. # be registered with Rinda for other Mack applications
  4. # to use.
  5. include Mack::Distributable
  6.  
  7. def self.all
  8. # code here...
  9. end
  10.  
  11. def self.authenticate(username, password)
  12. # code here....
  13. end
  14.  
  15. def display_name
  16. # code here...
  17. end
  18.  
  19. end
Add Comment
Please, Sign In to add comment