forked from copelandsoftware/XCGLogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ObjcExceptionBridging.podspec
32 lines (24 loc) · 1.16 KB
/
ObjcExceptionBridging.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
29
30
31
32
Pod::Spec.new do |spec|
spec.name = 'ObjcExceptionBridging'
spec.version = '7.0.1'
spec.summary = 'A bridge to Objective-C exception handling, for use in Swift projects.'
spec.description = <<-DESC
For use in XCGLogger only at this point, untested as an independent library
DESC
spec.homepage = 'https://github.com/DaveWoodCom/XCGLogger'
spec.license = { :type => 'MIT', :file => 'LICENSE.txt' }
spec.author = { 'Dave Wood' => '[email protected]' }
spec.social_media_url = 'http://twitter.com/DaveWoodX'
spec.platforms = { :ios => '8.0', :watchos => '2.0', :tvos => '9.0' }
spec.requires_arc = true
spec.source = { :git => 'https://github.com/DaveWoodCom/XCGLogger.git', :tag => '7.0.1' }
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.default_subspecs = 'ObjcExceptionBridging'
# ObjcExceptionBridging Framework
spec.subspec 'ObjcExceptionBridging' do |core|
core.source_files = 'Sources/ObjcExceptionBridging/**/*.{h,m}'
end
end