-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathALPValidator.podspec
More file actions
37 lines (26 loc) · 1.11 KB
/
ALPValidator.podspec
File metadata and controls
37 lines (26 loc) · 1.11 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
35
36
37
Pod::Spec.new do |s|
s.name = "ALPValidator"
s.version = "0.0.1"
s.summary = "Drop in user input validation for your iOS apps."
s.description = <<-DESC
ALPValidator provides drop in user input validation for your iOS apps. It's inspired by the [jQuery Validation](https://github.com/jzaefferer/jquery-validation) plug-in.
Validations:
- Presence validation
- Minimum length validation
- Maximum length validation
- Regular expression validation
- Email validation
- Custom block based validation
- Remote validation (remote web service validation)
DESC
s.homepage = "https://github.com/adamwaite/ALPValidator"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Adam Waite" => "adam@adamjwaite.co.uk" }
s.social_media_url = "http://twitter.com/AdamWaite"
s.platform = :ios
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/adamwaite/ALPValidator.git", :tag => "v0.0.1" }
s.source_files = 'ALPValidator', 'ALPValidator/**/*.{h,m}'
s.public_header_files = 'ALPValidator/ALPValidator.h'
s.requires_arc = true
end