Last active
August 29, 2015 13:56
-
-
Save baweaver/9315733 to your computer and use it in GitHub Desktop.
validates
This file contains 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
# Playing off of my prompt idea, let's take it one step further: | |
name = prompt for: 'Name', validate: { with: /\w+/, or: 'Invalid name given!' } | |
# Where if given invalid input it will say: | |
# Error: Invalid name given | |
# Name: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If validation is left off, accept raw input.
If validation only has a 'with', only alert based on the 'for' instead of giving a custom message.