Module: RegularValidation
- Defined in:
- lib/regular_validation.rb,
lib/regular_validation/version.rb
Constant Summary collapse
- VERSION =
"0.0.2"
Class Method Summary collapse
Class Method Details
.email ⇒ Object
9 10 11 |
# File 'lib/regular_validation.rb', line 9 def email /\A[^@]+@([^@\.]+\.)+[^@\.]+\z/ end |
.username ⇒ Object
5 6 7 |
# File 'lib/regular_validation.rb', line 5 def username /\A[a-zA-Z][\w\.]+\z/ end |