-
Notifications
You must be signed in to change notification settings - Fork 20
/
CancellablePromiseKit.podspec
31 lines (25 loc) · 1.36 KB
/
CancellablePromiseKit.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
Pod::Spec.new do |s|
s.name = 'CancellablePromiseKit'
s.version = '0.3.0'
s.swift_version = '5.0'
s.summary = 'Extends the amazing PromiseKit to cover cancellable tasks'
s.description = <<-DESC
CancellablePromiseKit is an extension for PromiseKit. A Promise is an abstraction of an asynchonous
operation that can succeed or fail. A `CancellablePromise`, provided by this library, extends this
concept to represent tasks that can be cancelled/aborted.
DESC
s.homepage = 'https://github.com/johannesd/CancellablePromiseKit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Johannes Dörr' => 'mail@johannesdoerr.de' }
s.source = { :git => 'https://github.com/johannesd/CancellablePromiseKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/johdoerr'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'CancellablePromiseKit/Classes/**/*'
# s.resource_bundles = {
# 'CancellablePromiseKit' => ['CancellablePromiseKit/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'PromiseKit', '~> 6'
end