-
Notifications
You must be signed in to change notification settings - Fork 4
/
XKKeychain.podspec
31 lines (28 loc) · 1.29 KB
/
XKKeychain.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
27
28
29
30
31
#
# Be sure to run `pod lib lint XKKeychain.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "XKKeychain"
s.version = "1.0.2"
s.summary = "A completely flexible keychain wrapper for generic password keychain items."
s.description = <<-DESC
XKKeychain provides a flexible and generic Objective C wrapper for accessing the keychain.
It provides access to all of the possible attributes, so that it should suit all applications,
while still being simple and convenient to use.
DESC
s.homepage = "https://github.com/karlvr/XKKeychain"
s.license = 'MIT'
s.author = { "Karl von Randow" => "[email protected]" }
s.source = { :git => "https://github.com/karlvr/XKKeychain.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/avon'
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = '1.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
end