forked from AnthonyMDev/AmazonS3RequestManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmazonS3RequestManager.podspec
More file actions
25 lines (20 loc) · 882 Bytes
/
Copy pathAmazonS3RequestManager.podspec
File metadata and controls
25 lines (20 loc) · 882 Bytes
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
Pod::Spec.new do |s|
s.name = 'AmazonS3RequestManager'
s.version = '1.2.0'
s.license = 'MIT'
s.summary = 'A Alamofire based request manager that serializes requests to the AWS S3 (Amazon Simple Storage Solution). Based on AFAmazonS3Manager'
s.homepage = 'https://github.com/AnthonyMDev/AmazonS3RequestManager'
s.social_media_url = 'http://twitter.com/AnthonyMDev'
s.authors = { 'Anthony Miller' => 'AnthonyMDev@gmail.com' }
s.source = { :git => 'https://github.com/AnthonyMDev/AmazonS3RequestManager.git', :tag => s.version }
s.ios.frameworks = 'MobileCoreServices'
s.tvos.frameworks = 'MobileCoreServices'
s.osx.frameworks = 'CoreServices'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '10.1'
s.osx.deployment_target = '10.10'
s.source_files = 'Source/*.{h,m,swift}'
s.requires_arc = true
s.dependency 'Alamofire', '~> 4.5'
s.dependency 'SWXMLHash', '~> 4.2'
end