Skip to content

Instantly share code, notes, and snippets.

@jpemberthy
Created January 3, 2012 19:41
Show Gist options
  • Save jpemberthy/1556527 to your computer and use it in GitHub Desktop.
Save jpemberthy/1556527 to your computer and use it in GitHub Desktop.
validates :email, presence: true, format: { with: /\A[^@]+@([^@\.]+\.)+[^@\.]+\z/ }
validates :username, presence: true, length: { :minimum => 3 },
uniqueness: true, format: { with: /^\w+$/ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment