-
Notifications
You must be signed in to change notification settings - Fork 11
/
LSThreadPoolLib.podspec
68 lines (41 loc) · 3.28 KB
/
LSThreadPoolLib.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "LSThreadPoolLib"
s.version = "1.8.0"
s.summary = "Lightstreamer Thread Pool and URL Dispatch Library"
s.description = <<-DESC
This library addresses the limited size of the connection
pool of iOS. For more background information on this issue
please see:
* http://blog.lightstreamer.com/2013/01/on-ios-url-connection-parallelism-and.html
The library contains the following utility classes:
* LSURLDispatcher: provides services to connect to a URL,
synchronously and asynchronously, while ensuring the
connection pool is never exceeded.
* LSThreadPool: a general purpose fixed-size thread pool
implementation. Used by LSURLDispatcher but available for
other uses.
* LSTimerThread: a service to perform delayed calls to
target/selector without employing the main thread. Used by
LSURLDispatcher but available for other uses.
DESC
s.homepage = "https://github.com/Lightstreamer/utility-ThreadPool-ios"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "Apache License, Version 2.0",
:file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Gianluca Bertani" => "[email protected]" }
s.social_media_url = "https://twitter.com/self_vs_this"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/Lightstreamer/utility-ThreadPool-ios.git",
:tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Lightstreamer Thread Pool Library/**/*.{h,m}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.xcconfig = { "OTHER_LDFLAGS" => "-ObjC" }
end