Created
August 1, 2017 00:22
-
-
Save bryanp/6a1aa7f09e8750ea44538a4272d3dce8 to your computer and use it in GitHub Desktop.
Validation DSL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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