Skip to content

Instantly share code, notes, and snippets.

@markbates
Created August 25, 2008 15:51
Show Gist options
  • Save markbates/7081 to your computer and use it in GitHub Desktop.
Save markbates/7081 to your computer and use it in GitHub Desktop.
class User
# By including Mack::Distributable this class will now
# be registered with Rinda for other Mack applications
# to use.
include Mack::Distributable
def self.all
# code here...
end
def self.authenticate(username, password)
# code here....
end
def display_name
# code here...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment