-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMTEThreadsafeCollections.podspec
More file actions
29 lines (24 loc) · 1.1 KB
/
MTEThreadsafeCollections.podspec
File metadata and controls
29 lines (24 loc) · 1.1 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
Pod::Spec.new do |spec|
spec.name = "MTEThreadsafeCollections"
spec.version = "1.0.3"
spec.summary = "Threadsafe collections as replacement for NSMutableArray/Dictionary/Set"
spec.description = <<-DESC
A collection of threadsafe replacements for NSMutableArray, NSMutableDictionary and NSMutableSet. Uses GCD dispatch queues for threadsafety.
DESC
spec.homepage = "https://github.com/mateforevents/MTEThreadsafeCollections"
spec.license = "MIT"
spec.author = { "mheicke" => "matthias.heicke@mateforevents.com" }
spec.social_media_url = "https://www.facebook.com/mateforevents"
spec.platform = :ios, "7.0"
spec.requires_arc = true
spec.source = { :git => "https://github.com/mateforevents/MTEThreadsafeCollections.git", :tag => "v#{spec.version}" }
spec.subspec 'Array' do |ss|
ss.source_files = "Pod/MTEThreadsafeArray.{h,m}"
end
spec.subspec 'Dictionary' do |ss|
ss.source_files = "Pod/MTEThreadsafeDictionary.{h,m}"
end
spec.subspec 'Set' do |ss|
ss.source_files = "Pod/MTEThreadsafeSet.{h,m}"
end
end