-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPromisedFuture.podspec
More file actions
23 lines (18 loc) · 846 Bytes
/
PromisedFuture.podspec
File metadata and controls
23 lines (18 loc) · 846 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 = 'PromisedFuture'
s.version = '1.0.2'
s.summary = 'A Swift based Future/Promises framework to help writing asynchronous code in an elegant way'
s.description = <<-DESC
Future/Promises framework to help to build easily composable and chainable asynchronous tasks.
DESC
s.homepage = 'https://github.com/AladinWay/PromisedFuture'
s.screenshots = 'http://www.itechnodev.com/img/logo.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Alaeddine Messaoudi' => 'itechnodev@gmail.com' }
s.source = { :git => 'https://github.com/AladinWay/PromisedFuture.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Source/**/*.{h,m,swift}'
end