Skip to content

Commit

Permalink
Added podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Kuck committed Nov 5, 2013
1 parent 4be4916 commit 0c9d391
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Project/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
platform :ios
#platform :osx

podspec :path => "../SHEmailValidator.podspec"
23 changes: 23 additions & 0 deletions SHEmailValidator.podspec
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

0 comments on commit 0c9d391

Please sign in to comment.