fix email regex example code [ci skip]

different from the regex in EmailValidator
This commit is contained in:
Angelo capilleri 2013-12-03 16:40:04 +01:00
parent 6eba8d27e6
commit f590cdb656
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module ActiveModel
# validates :terms, acceptance: true
# validates :password, confirmation: true
# validates :username, exclusion: { in: %w(admin superuser) }
# validates :email, format: { with: /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, on: :create }
# validates :email, format: { with: /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i, on: :create }
# validates :age, inclusion: { in: 0..9 }
# validates :first_name, length: { maximum: 30 }
# validates :age, numericality: true