- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMiniKeychain.podspec
More file actions
Latest commit
23 lines (22 loc) · 919 Bytes
/
Copy pathMiniKeychain.podspec
File metadata and controls
23 lines (22 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.newdo |s|
s.name="MiniKeychain"
s.version="1.0.8"
s.summary="A small library to save and restore something from Keychain."
s.description=<<-DESC
A small library to save and restore something from Keychain.
This library is a subset of Kishikawa's KeychainAccess.
DESC
s.homepage="https://github.com/sonsongithub/MiniKeychain"
s.license='MIT'
s.author={"sonson"=>"yoshida.yuichi@gmail.com"}
s.source={
:git=>"https://github.com/sonsongithub/MiniKeychain.git",
:tag=>"#{s.version}"
}
s.social_media_url='https://twitter.com/sonson_twit'
s.ios.deployment_target="8.4"
s.osx.deployment_target="10.9"
s.tvos.deployment_target="9.2"
s.requires_arc=true
s.source_files='MiniKeychain/*.swift'
end