class Veto::IfConditions

Public Instance Methods

pass?(*args) click to toggle source
# File lib/veto/conditions/if_conditions.rb, line 3
def pass?(*args)
  conditions.each {|c| return(false) unless c.pass?(*args) } 
  true
end