Sha256: f9625da0fe1ec6ffb8aa386eb683d430ecf8eaa86743692fe093ca01b2792c3a
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
module Dry module Validation class Rule include Dry::Equalizer(:name, :predicate) attr_reader :name, :predicate class Negation < Rule include Dry::Equalizer(:rule) attr_reader :rule def initialize(rule) @rule = rule end def call(*args) rule.(*args).negated end def to_ary [:not, rule.to_ary] end end def initialize(name, predicate) @name = name @predicate = predicate end def predicate_id predicate.id end def type :rule end def call(*args) Validation.Result(args, predicate.call, self) end def to_ary [type, [name, predicate.to_ary]] end alias_method :to_a, :to_ary def and(other) Conjunction.new(self, other) end alias_method :&, :and def or(other) Disjunction.new(self, other) end alias_method :|, :or def xor(other) ExclusiveDisjunction.new(self, other) end alias_method :^, :xor def then(other) Implication.new(self, other) end alias_method :>, :then def negation Negation.new(self) end def new(predicate) self.class.new(name, predicate) end def curry(*args) self.class.new(name, predicate.curry(*args)) end end end end require 'dry/validation/rule/key' require 'dry/validation/rule/value' require 'dry/validation/rule/each' require 'dry/validation/rule/set' require 'dry/validation/rule/composite' require 'dry/validation/rule/check' require 'dry/validation/rule/group' require 'dry/validation/rule/result'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dry-validation-0.4.1 | lib/dry/validation/rule.rb |
dry-validation-0.4.0 | lib/dry/validation/rule.rb |