25 lines
1.1 KiB
Ruby
25 lines
1.1 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Locksmith"
|
|
s.version = "4.0.0"
|
|
s.summary = "Locksmith is a powerful, protocol-oriented library for working with the keychain in Swift."
|
|
s.description = <<-DESC
|
|
Locksmith is a powerful, protocol-oriented library for working with the iOS, Mac OS X, watchOS, and tvOS keychain in Swift. It provides extensive support for a lot of different keychain requests, and extensively uses Swift-native concepts.
|
|
DESC
|
|
s.homepage = "https://github.com/matthewpalmer/Locksmith"
|
|
s.license = 'MIT'
|
|
s.author = { "matthewpalmer" => "matt@matthewpalmer.net" }
|
|
s.source = { :git => "https://github.com/matthewpalmer/Locksmith.git", :tag => s.version.to_s }
|
|
s.social_media_url = 'https://twitter.com/_matthewpalmer'
|
|
|
|
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.requires_arc = true
|
|
|
|
s.source_files = 'Source/*.{m,h,swift}'
|
|
|
|
s.frameworks = 'Foundation', 'Security'
|
|
end
|