Method: ATValidations::Predicates#atv_in_set
- Defined in:
- lib/at-validations.rb
#atv_in_set(*set) ⇒ Object
81 82 83 84 85 |
# File 'lib/at-validations.rb', line 81 def atv_in_set(*set) atv_block do |e| set.include?(e) || Error.new(:error => "must be in set #{set}") end end |