-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathKeychains.podspec
More file actions
22 lines (18 loc) · 816 Bytes
/
Keychains.podspec
File metadata and controls
22 lines (18 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Keychains"
s.summary = "A keychain wrapper that is so easy to use that your cat could use it."
s.version = "2.0.0"
s.homepage = "https://github.com/hyperoslo/Keychains"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
s.source = { :git => "https://github.com/hyperoslo/Keychains.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hyperoslo'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.ios.source_files = 'Source/{iOS,Shared}/**/*'
s.osx.source_files = 'Source/{Mac,Shared}/**/*'
s.frameworks = 'Foundation'
s.frameworks = 'Security'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
end