forked from nikola-mladenovic/AwsSwiftSign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAwsSign.podspec
More file actions
21 lines (17 loc) · 782 Bytes
/
AwsSign.podspec
File metadata and controls
21 lines (17 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AwsSign"
s.version = "0.1.0"
s.summary = "Swift library for signing AWS URLRequests"
s.homepage = "https://github.com/nikola-mladenovic/AwsSwiftSign"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Nikola Mladenovic" => "nikola@mladenovic.biz" }
s.source = { :git => "https://github.com/nikola-mladenovic/AwsSwiftSign.git", :tag => s.version.to_s }
s.source_files = 'Source/*.swift'
s.swift_version = "4.0"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.2'
s.dependency 'CryptoSwift', '~> 0.8'
end