Skip to content

Instantly share code, notes, and snippets.

@bryanp
Created August 1, 2017 00:22
Show Gist options
  • Save bryanp/6a1aa7f09e8750ea44538a4272d3dce8 to your computer and use it in GitHub Desktop.
Save bryanp/6a1aa7f09e8750ea44538a4272d3dce8 to your computer and use it in GitHub Desktop.
Validation DSL
# common validation style implemented on top of dry-validation
validates :title, length: { minimum: 20 }
# or use predicates
validates(:title).filled(min_size?: 20)
# or validate however you want
validates :title do |value|
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment