-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathAwaitKit.podspec
More file actions
23 lines (19 loc) · 863 Bytes
/
AwaitKit.podspec
File metadata and controls
23 lines (19 loc) · 863 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 = 'AwaitKit'
s.version = '5.2.0'
s.license = 'MIT'
s.summary = 'The ES8 Async/Await control flow for Swift '
s.homepage = 'https://github.com/yannickl/AwaitKit.git'
s.social_media_url = 'https://twitter.com/yannickloriot'
s.authors = { 'Yannick Loriot' => 'contact@yannickloriot.com' }
s.source = { :git => 'https://github.com/yannickl/AwaitKit.git', :tag => s.version }
s.screenshot = 'http://yannickloriot.com/resources/AwaitKit-Arista-Banner.png'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.ios.framework = 'Foundation'
s.dependency 'PromiseKit', '~> 6'
s.source_files = 'Sources/**/*.swift'
s.requires_arc = true
end