Sha256: 403a5e77b21095c9b2373fb94b3bb15a16c23098242479aa7d096f6d589550d3
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
module DataMapper module Validate ## # # @author Dirkjan Bussink # @since 0.9 class PrimitiveValidator < GenericValidator def call(target) value = target.validation_property_value(field_name) property = target.validation_property(field_name) return true if value.nil? || property.primitive?(value) error_message = @options[:message] || default_error(property) add_error(target, error_message, field_name) false end protected def default_error(property) ValidationErrors.default_error_message(:primitive, field_name, property.primitive) end end # class PrimitiveValidator module ValidatesIsPrimitive ## # Validates that the specified attribute is of the correct primitive type. # # @example [Usage] # require 'dm-validations' # # class Person # include DataMapper::Resource # # property :birth_date, Date # # validates_is_primitive :birth_date # # # a call to valid? will return false unless # # the birth_date is something that can be properly # # casted into a Date object. # end def validates_is_primitive(*fields) opts = opts_from_validator_args(fields) add_validator_to_context(opts, fields, DataMapper::Validate::PrimitiveValidator) end end # module ValidatesPresent end # module Validate end # module DataMapper
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dm-validations-0.10.2 | lib/dm-validations/validators/primitive_validator.rb |