Module: Authlogic::Regex
- Defined in:
- lib/authlogic/regex.rb
Overview
Class Method Summary collapse
-
.email ⇒ Object
A general email regular expression.
-
.login ⇒ Object
A simple regular expression that only allows for letters, numbers, spaces, and .-_@.
Class Method Details
.email ⇒ Object
A general email regular expression. It allows top level domains (TLD) to be from 2 - 4 in length, any TLD longer than that must be manually specified. The decisions behind this regular expression were made by reading this website: www.regular-expressions.info/email.html, which is an excellent resource for regular expressions.
11 12 13 14 15 16 17 |
# File 'lib/authlogic/regex.rb', line 11 def self.email return @email_regex if @email_regex email_name_regex = %{[A-Z0-9!#$\%&'*+/=?^_`{|}~\\-.]+} domain_head_regex = '(?:[A-Z0-9\-]+\.)+' domain_tld_regex = '(?:[A-Z]{2,4}|museum|travel)' @email_regex = /\A#{email_name_regex}@#{domain_head_regex}#{domain_tld_regex}\z/i end |
.login ⇒ Object
A simple regular expression that only allows for letters, numbers, spaces, and .-_@. Just a standard login / username regular expression.
21 22 23 |
# File 'lib/authlogic/regex.rb', line 21 def self.login /\A\w[\w\.+\-_@ ]+$/ end |