-
Notifications
You must be signed in to change notification settings - Fork 4
/
EGFormValidator.podspec
35 lines (29 loc) · 1.19 KB
/
EGFormValidator.podspec
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
35
Pod::Spec.new do |s|
s.name = 'EGFormValidator'
s.version = '2.0.0'
s.summary = 'A simple form validation library written in Swift 4.2.'
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' => '[email protected]' }
s.source = { :git => 'https://github.com/alusev/EGFormValidator.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.source_files = 'Classes/*'
s.exclude_files = 'Classes/*.plist'
s.frameworks = 'UIKit'
end