Skip to content

Instantly share code, notes, and snippets.

@solnic
Last active March 15, 2017 20:01
Show Gist options
  • Save solnic/1c191c097262cf2080ea2a71c7d78b66 to your computer and use it in GitHub Desktop.
Save solnic/1c191c097262cf2080ea2a71c7d78b66 to your computer and use it in GitHub Desktop.
require 'dry-validation'
schema = Dry::Validation.Schema do
configure do
def self.messages
super.merge(en: { errors: { foo: 'either a or b can be filled' } })
end
end
required(:a).maybe
required(:b).maybe
rule(foo: %i[a b]) do |a, b|
a.filled? ^ b.filled?
end
end
puts schema.(a: 'huh', b: 'heh').errors.inspect
# {:foo=>["either a or b can be filled"]}
puts schema.(a: 'huh', b: nil).errors.inspect
# {}
puts schema.(a: nil, b: 'heh').errors.inspect
# {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment