Class: Dina::Validator
- Inherits:
-
Object
- Object
- Dina::Validator
- Defined in:
- lib/dina/utils/validator.rb
Class Method Summary collapse
Class Method Details
.valid_depth_elevation(value:) ⇒ Object
4 5 6 |
# File 'lib/dina/utils/validator.rb', line 4 def self.valid_depth_elevation(value:) value >= 0 && value <= 15000 && value.to_s.split('.').last.size <= 2 end |