-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathLatch.podspec
More file actions
16 lines (16 loc) · 806 Bytes
/
Latch.podspec
File metadata and controls
16 lines (16 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Latch"
s.version = "1.3.0"
s.summary = "A simple Swift Keychain Wrapper for iOS"
s.homepage = "https://github.com/endocrimes/Latch"
s.documentation_url = "https://endocrimes.com/Latch"
s.license = "MIT"
s.author = { "Danielle Tomlinson" => "dani@builds.terrible.systems" }
s.social_media_url = "http://twitter.com/endocrimes"
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "2.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "#{s.homepage}.git", :tag => s.version }
s.source_files = "Classes", "Latch/*.{h,swift}"
s.framework = "Security"
end