Class: Axlsx::DataTypeValidator
- Inherits:
-
Object
- Object
- Axlsx::DataTypeValidator
- Defined in:
- lib/axlsx/util/validators.rb
Overview
Validate that the class of the value provided is either an instance or the class of the allowed types and that any specified additional validation returns true.
Class Method Summary collapse
-
.validate(name, types, v, other = false) ⇒ Boolean
Perform validation.
Class Method Details
.validate(name, types, v, other = false) ⇒ Boolean
Perform validation
54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/axlsx/util/validators.rb', line 54 def self.validate(name, types, v, other=false) types = [types] unless types.is_a? Array if other.is_a?(Proc) raise ArgumentError, (ERR_TYPE % [v.inspect, name, types.inspect]) unless other.call(v) end if v.class == Class types.each { |t| return if v.ancestors.include?(t) } else types.each { |t| return if v.is_a?(t) } end raise ArgumentError, (ERR_TYPE % [v.inspect, name, types.inspect]) end |