forked from spothero/SpotHeroEmailValidator-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric Kuck
committed
Nov 5, 2013
1 parent
4be4916
commit 0c9d391
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
platform :ios | ||
#platform :osx | ||
|
||
podspec :path => "../SHEmailValidator.podspec" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "SHEmailValidator" | ||
s.license = 'Apache License, Version 2.0' | ||
s.version = "1.0.1" | ||
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/spothero/SHEmailValidator.git", :tag => "v1.0.0" } | ||
s.source_files = 'SHEmailValidator', 'SHEmailValidator/*.{h,m}' | ||
|
||
end |