forked from ashleymills/Keychain.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Simple-KeychainSwift.podspec
26 lines (22 loc) · 1.03 KB
/
Simple-KeychainSwift.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 Simple-KeychainSwift.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 = 'Simple-KeychainSwift'
s.version = '1.1.6'
s.summary = 'A simple drop in Swift wrapper class for the Keychain'
s.homepage = 'https://github.com/ashleymills/Keychain.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ashley Mills' => '[email protected]' }
s.source = { :git => "https://github.com/ashleymills/Keychain.swift.git", :tag => "v"+s.version.to_s }
s.social_media_url = "http://twitter.com/ashleymills"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.source_files = 'Simple-KeychainSwift/Classes/Keychain.swift'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
end