forked from alusev/EGFormValidator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEGFormValidator.podspec
More file actions
34 lines (28 loc) · 1.15 KB
/
EGFormValidator.podspec
File metadata and controls
34 lines (28 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'EGFormValidator'
s.version = '1.2.0'
s.summary = 'A simple form validation library written in Swift 4.0.'
s.description = <<-DESC
The EGFormValidator framework allows you to validate any input field in a convenient way and to display error absolutely anywhere you want.
Availables built-in form validators:
* Mandatory
* Digits Only
* Minlength
* Maxlength
* EqualTo
* Email
* AlphaNumeric
* Regular Expression
It is also extendable, so you can easily create your own input validator.
Add custom styles to highlight invalid input fields.
Add a condition when a validator should be applied.
DESC
s.homepage = 'https://github.com/alusev/EGFormValidator'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Evgeny Gushchin' => 'latenal@gmail.com' }
s.source = { :git => 'https://github.com/alusev/EGFormValidator.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.source_files = 'Classes/*'
s.frameworks = 'UIKit'
end