Class: Axlsx::RegexValidator
- Inherits:
-
Object
- Object
- Axlsx::RegexValidator
- Defined in:
- lib/axlsx/util/validators.rb
Overview
Validates the value against the regular expression provided.
Class Method Summary (collapse)
Class Method Details
+ (Object) validate(name, regex, v)
21 22 23 |
# File 'lib/axlsx/util/validators.rb', line 21 def self.validate(name, regex, v) raise ArgumentError, (ERR_REGEX % [v.inspect, regex.to_s]) unless (v.respond_to?(:=~) && v =~ regex) end |