- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFutureLib.podspec
More file actions
Latest commit
18 lines (15 loc) · 708 Bytes
/
Copy pathFutureLib.podspec
File metadata and controls
18 lines (15 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |spec|
spec.name='FutureLib'
spec.version='1.0.1'
spec.summary='FutureLib is a pure Swift 2 library implementing Skala-like Futures & Promises'
spec.license='Apache License, Version 2.0'
spec.homepage='https://github.com/couchdeveloper/FutureLib'
spec.authors={'Andreas Grosam'=>'couchdeveloper@gmail.com'}
spec.source={:git=>'https://github.com/couchdeveloper/FutureLib.git',:tag=>"#{spec.version}"}
spec.osx.deployment_target='10.10'
spec.ios.deployment_target='8.0'
spec.tvos.deployment_target='9.0'
spec.watchos.deployment_target='2.0'
spec.source_files="Sources/*.swift","Sources/**/*.swift"
spec.requires_arc=true
end