Module: Lite::Validation::Result::Abstract::Refutable
- Included in:
- Validator::Result::Abstract
- Defined in:
- lib/lite/validation/result/abstract/refutable.rb
Instance Method Summary collapse
Instance Method Details
#refute(_error) ⇒ Object
10 11 12 |
# File 'lib/lite/validation/result/abstract/refutable.rb', line 10 def refute(_error) raise NotImplementedError, "#{self.class.name}##{__method__} unimplemented" end |
#refuted? ⇒ Boolean
14 15 16 |
# File 'lib/lite/validation/result/abstract/refutable.rb', line 14 def refuted? raise NotImplementedError, "#{self.class.name}##{__method__} unimplemented" end |