-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftyPromise.podspec
More file actions
23 lines (19 loc) · 1004 Bytes
/
SwiftyPromise.podspec
File metadata and controls
23 lines (19 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SwiftyPromise"
s.version = "1.3.0"
s.summary = "A simple promise framework for Swift."
s.description = <<-DESC
This small library implements thread safe promises for Swift. It allows to create promises and fulfill or reject them asynchronously. Promises can be chained using the `then` method. Furthermore it has support for cancelling a promise chain.
DESC
s.homepage = "https://github.com/sroebert/SwiftyPromise"
s.license = { :type => 'MIT' }
s.author = { "Steven Roebert" => "steven@roebert.nl" }
s.source = { :git => "https://github.com/sroebert/SwiftyPromise.git", :tag => "#{s.version}" }
s.requires_arc = true
s.source_files = 'Sources/**/*.{h,swift}'
s.frameworks = 'Foundation'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
end