Method: ATValidations::Predicates#atv_equal
- Defined in:
- lib/at-validations.rb
#atv_equal(value) ⇒ Object
87 88 89 90 91 |
# File 'lib/at-validations.rb', line 87 def atv_equal(value) atv_block do |e| e == value || Error.new(:error => "must be equal to #{value}") end end |