-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBAPromise.podspec
More file actions
30 lines (26 loc) · 932 Bytes
/
Copy pathBAPromise.podspec
File metadata and controls
30 lines (26 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "BAPromise"
s.version = "3.3.7"
s.summary = "Objective C Promise Library"
s.description = <<-DESC
Swift Promise Library. An alternative to NSOperation for asynchronous operations.
DESC
s.homepage = "https://github.com/benski/BAPromise"
s.license = "MIT"
s.author = { "Ben Allison" => "benski@winamp.com" }
s.source = { :git => "https://github.com/benski/BAPromise.git", :tag => s.version.to_s }
s.swift_versions = ['4.2', '5.0', '5.1']
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'Classes/*'
s.public_header_files = 'Classes/BAPromise.h'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'BAPromiseTests/*'
test_spec.scheme = {
:code_coverage => true
}
end
end