-
Notifications
You must be signed in to change notification settings - Fork 6
/
DAKeychain.podspec
26 lines (22 loc) · 1.23 KB
/
DAKeychain.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
#
# Be sure to run `pod lib lint DAKeychain.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DAKeychain'
s.version = '1.1.0'
s.summary = 'DAKeychain is a simple keychain wrapper that acts like a dictionary.'
s.description = <<-DESC
I created this small library for fun. I wanted to abstract all that boilerplate code when working with the keychain and I wanted to make working with the keychain as simple as possible. So I created this. This library will behave like a dictionary when working with the keychain. It's pretty simple to use.
DESC
s.homepage = 'https://github.com/dagostini/DAKeychain'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dagostini' => '[email protected]' }
s.source = { :git => 'https://github.com/dagostini/DAKeychain.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dagostin'
s.ios.deployment_target = '8.0'
s.source_files = 'DAKeychain/Classes/**/*'
end