forked from spothero/SpotHeroEmailValidator-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSHEmailValidator.podspec
23 lines (16 loc) · 1.08 KB
/
SHEmailValidator.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SHEmailValidator"
s.license = 'Apache License, Version 2.0'
s.version = "1.0.4"
s.summary = "iOS Email Validator"
s.description = <<-DESC
An iOS library that will provide basic email syntax validation as well as provide suggestions for possible typos (for example, [email protected] would be corrected to [email protected]).
DESC
s.homepage = "https://github.com/spothero/SHEmailValidator"
s.screenshots = "https://github.com/spothero/SHEmailValidator/blob/master/Screenshots/Screenshot%201.png", "https://github.com/spothero/SHEmailValidator/blob/master/Screenshots/Screenshot%202.png", "https://github.com/spothero/SHEmailValidator/blob/master/Screenshots/Screenshot%203.png"
s.authors = { "spothero" => "[email protected]", "EricKuck" => "[email protected]" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source = { :git => "https://github.com/ehlersd/SHEmailValidator.git", :tag => s.version.to_s }
s.source_files = 'SHEmailValidator', 'SHEmailValidator/*.{h,m}'
end