-
Notifications
You must be signed in to change notification settings - Fork 46
/
CwlPreconditionTesting.podspec
28 lines (23 loc) · 1.02 KB
/
CwlPreconditionTesting.podspec
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
Pod::Spec.new do |s|
s.name = 'CwlPreconditionTesting'
s.version = '2.2.2'
s.summary = 'A Mach exception handler, written in Swift and Objective-C, that allows `EXC_BAD_INSTRUCTION` to be caught and tested.'
s.homepage = 'https://github.com/mattgallagher/CwlPreconditionTesting'
s.license = { :file => 'LICENSE.txt', :type => 'ISC' }
s.author = 'Matt Gallagher'
s.source = {
:git => 'https://github.com/mattgallagher/CwlPreconditionTesting.git',
:tag => s.version.to_s
}
s.source_files = 'Sources/CwlPreconditionTesting/**/*.swift'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'
s.visionos.deployment_target = '1.0'
s.swift_version = '5.5'
s.dependency 'CwlCatchException', '~> 2.2.1'
s.dependency 'CwlMachBadInstructionHandler', '~> 2.2.2'
s.dependency 'CwlPosixPreconditionTesting', '~> 2.2.2'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*.swift'
end
end