This repository was archived by the owner on Apr 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathREDownloadTasksQueue.podspec
More file actions
38 lines (33 loc) · 1.62 KB
/
REDownloadTasksQueue.podspec
File metadata and controls
38 lines (33 loc) · 1.62 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
# Common settings
s.name = "REDownloadTasksQueue"
s.version = "1.1.0"
s.summary = "iOS Objective-C download queue based on NSURLSessionDownloadTask's"
s.description = <<-DESC
iOS Objective-C download queue based on NSURLSessionDownloadTask's.
Main features:
- Using NSURLSessionDownloadTask, required iOS 7 and up.
- Using another operation queue for downloading.
- Controlling concurrent tasks for parallel downloading, can be tuned to quality of the internet connection.
- Possibility to inform about queue state via delegate, blocks and notifications. Can be selected which method to use.
- Progress calculating on downloaded data size per each task, not on simple count of tasks, for smoothly progressing.
- Queue can be serialized/deserialized for future reusing.
- Required ARC.
DESC
s.homepage = "https://github.com/OlehKulykov/REDownloadTasksQueue"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Oleh Kulykov" => "<info@resident.name>" }
s.source = { :git => 'https://github.com/OlehKulykov/REDownloadTasksQueue.git', :tag => s.version.to_s }
s.dependency 'NSMutableNumber'
s.dependency 'Inlineobjc'
# Platforms
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.7"
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
# Build
s.public_header_files = 'REDownloadTasksQueue.h', 'REDownloadTasksQueue+Serialization.h'
s.source_files = '*.{h,m}'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/REDownloadTasksQueue"' }
s.requires_arc = true
end