-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOperationsKit.podspec
More file actions
45 lines (34 loc) · 1.54 KB
/
OperationsKit.podspec
File metadata and controls
45 lines (34 loc) · 1.54 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
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "OperationsKit"
s.version = "0.4.0"
s.summary = "Operation subclasses offering a promise-based interface."
s.description = <<-DESC
`OperationsKit` is a collection of `Operation` subclasses which offer a
promise-based interface to chain results, built on top of `PromiseKit`.
Its main focus is to offer an easy to use, promise-based approach to work
with heavy operations, giving users additional methods to spawn children
operations without deadlocking the system and tracking operation's progress.
Main features are:
- `Operation` subclasses for `PromiseKit`-based asynchronous operation.
- Ready-to-use retryable operation for those situation when a recoverable
error may arise.
- Subclasses to wrap blocks returning promises in `Operation`s.
- Convenience method to wait for children operations without blocking parent's
queue.
- Built-in progress to track asynchronous operation status.
- Extensive code coverage.
DESC
s.homepage = "https://github.com/Sumolari/OperationsKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Lluís Ulzurrun de Asanza i Sàez" => "me@llu.is" }
s.source = {
:git => "https://github.com/Sumolari/OperationsKit.git",
:tag => "#{s.version}"
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = "Source", "Source/**/*.{h,m,swift}"
s.dependency "PromiseKit", "~> 4.1"
s.dependency "ReactiveCocoa", "~> 6.0"
s.dependency "Result", "~> 3.1"
end