Module: DataMapper::Validate::ValidatesFormat
- Included in:
- ClassMethods
- Defined in:
- lib/gems/dm-validations-0.9.9/lib/dm-validations/format_validator.rb
Overview
class FormatValidator
Instance Method Summary collapse
-
#validates_format(*fields) ⇒ Object
Validates that the attribute is in the specified format.
Instance Method Details
#validates_format(*fields) ⇒ Object
Validates that the attribute is in the specified format. You may use the :as (or :with, it’s an alias) option to specify the pre-defined format that you want to validate against. You may also specify your own format via a Proc or Regexp passed to the the :as or :with options.
90 91 92 93 |
# File 'lib/gems/dm-validations-0.9.9/lib/dm-validations/format_validator.rb', line 90 def validates_format(*fields) opts = opts_from_validator_args(fields) add_validator_to_context(opts, fields, DataMapper::Validate::FormatValidator) end |