Module: ParamsValidator::Validator::Presence
- Defined in:
- lib/params_validator/validator/presence.rb
Class Method Summary collapse
Class Method Details
.error_message ⇒ Object
4 |
# File 'lib/params_validator/validator/presence.rb', line 4 def self.; "is empty"; end |
.valid?(value) ⇒ Boolean
6 7 8 |
# File 'lib/params_validator/validator/presence.rb', line 6 def self.valid?(value) value.present? end |