This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a changelog, added a new Validator `regex(pattern: String)`, added unit tests for `regex(pattern: String)` fixed a typos in `EmailRegex`, `Base64Regex` where there were mixed english with greek characters, updated `isEmail`, `isBase64`, `isAlpha`, `isNumeric`, `isPhone` to use the new `regex` validator
- Loading branch information
Showing
7 changed files
with
65 additions
and
55 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [2.2.0] - May 19th 2016 | ||
- Added CHANGELOG | ||
- NEW Validator: `regex(pattern: String)`. The `value` is checked from start to finish with the `pattern`. | ||
- Minor updates and typos | ||
|
||
|
||
## [2.1.0] - May 10th 2016 | ||
- Added logical operators to combine Validators. The available logical operators are: `&&`, `||`, `!` (AND, OR, NOT respectively) |
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
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
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
Binary file modified
BIN
-883 Bytes
(96%)
SwiftValidators.xcworkspace/xcuserdata/gkaimakas.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
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
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