-
Notifications
You must be signed in to change notification settings - Fork 23
/
SwiftKeychain.podspec
executable file
·26 lines (20 loc) · 1.01 KB
/
SwiftKeychain.podspec
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
Pod::Spec.new do |s|
s.name = "SwiftKeychain"
s.version = "1.0.0"
s.summary = "Swift wrapper for working with the Keychain API implemented with Protocol Oriented Programming."
s.description = <<-DESC
Swift wrapper for working with the Keychain API implemented with Protocol Oriented Programming with support for iOS, OSX, watchOS and tvOS.
DESC
s.homepage = "https://github.com/yankodimitrov/SwiftKeychain"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yanko Dimitrov" => "[email protected]" }
s.social_media_url = "https://twitter.com/_yankodimitrov"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/yankodimitrov/SwiftKeychain.git", :tag => "v#{s.version}" }
s.source_files = "Keychain/Keychain.swift"
s.framework = "Security"
s.requires_arc = true
end