-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBluebird.podspec
More file actions
20 lines (17 loc) · 795 Bytes
/
Copy pathBluebird.podspec
File metadata and controls
20 lines (17 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'Bluebird'
s.version = '6.0.0'
s.summary = 'Promise/A+, Bluebird inspired, implementation in Swift 5.6'
s.homepage = 'https://github.com/AndrewBarba/Bluebird.swift'
s.documentation_url = 'https://andrewbarba.github.io/Bluebird.swift/'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Andrew Barba' => 'barba@hey.com' }
s.source = { :git => 'https://github.com/AndrewBarba/Bluebird.swift.git', :tag => s.version.to_s }
s.swift_versions = ['5.0', '5.1', '5.5', '5.6']
s.source_files = 'Sources/**/*.swift'
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end