forked from 3lvis/FormTextField
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormTextField.podspec
More file actions
Latest commit
executable file
·16 lines (16 loc) · 722 Bytes
/
Copy pathFormTextField.podspec
File metadata and controls
executable file
·16 lines (16 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name="FormTextField"
s.summary="A UITextField that supports formatters and input validators such as maximum length and regex"
s.version="1.0.0"
s.homepage="https://github.com/3lvis/FormTextField"
s.license='MIT'
s.author={"Elvis Nuñez"=>"elvisnunez@me.com"}
s.source={:git=>"https://github.com/3lvis/FormTextField.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/3lvis'
s.platform=:ios,'8.0'
s.requires_arc=true
s.source_files='Source/**/*'
s.frameworks='UIKit'
s.dependency'Formatter','~> 1.0.0'
s.dependency'InputValidator','~> 1.0.0'
end