Skip to content

Instantly share code, notes, and snippets.

@rtgibbons
Created April 4, 2011 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtgibbons/901070 to your computer and use it in GitHub Desktop.
Save rtgibbons/901070 to your computer and use it in GitHub Desktop.
snippet from irc
Validate('#new_user', {
'username' : {
'minimum' : 5,
'maximum' : 20,
'presence' : true
},
'password' : {
'minimum' : 8,
'maximum' : 32,
'presence' : true
},
'email' : {
'presence' : true
},
'password_confirmation' : {
'presence' : true,
'confirm' : true
},
'email_confirmation' : {
'presence' : true,
'confirm' : true
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment