forked from kastiglione/ConcurrentCollectionOperations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConcurrentCollectionOperations.podspec
21 lines (20 loc) · 1.14 KB
/
ConcurrentCollectionOperations.podspec
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 = "ConcurrentCollectionOperations"
s.version = "0.1.0"
s.summary = "Concurrent map and filter on NSArray, NSDictionary, NSSet using GCD."
s.description = <<-DESC
This is a set of categories for performing concurrent map and filter
operations on Foundation data structures, currently NSArray, NSDictionary,
NSSet.
Concurrency is achieved using Grand Central Dispatch's (GCD) dispatch_apply.
By default, operations are run on the default priority global concurrent
queue. The operations can be performed on any concurrent queue. This library
provides similar functionality to `pmap` as found in other languages.
DESC
s.homepage = "https://github.com/kastiglione/ConcurrentCollectionOperations"
s.license = 'MIT'
s.authors = { "Dave Lee" => "[email protected]", "Eloy Durán" => "[email protected]", "Mateus Armando" => "[email protected]" }
s.source = { :git => "https://github.com/kastiglione/ConcurrentCollectionOperations.git", :tag => "v#{s.version}" }
s.source_files = 'ConcurrentCollectionOperations'
s.requires_arc = false
end