forked from uber/UberSignature
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUberSignature.podspec
More file actions
21 lines (21 loc) · 852 Bytes
/
UberSignature.podspec
File metadata and controls
21 lines (21 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'UberSignature'
spec.version = '1.0.2'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/uber/UberSignature'
spec.author = 'Uber'
spec.summary = 'Draw signatures in Swift and Objective-C.'
spec.source = { :git => 'https://github.com/uber/UberSignature.git', :tag => spec.version.to_s }
spec.subspec 'ObjC' do |cs|
cs.source_files = 'Sources/ObjC/**/*.{h,m}',
cs.private_header_files = 'Sources/ObjC/Internal/*.h'
end
spec.subspec 'Swift' do |cs|
cs.source_files = 'Sources/Swift/**/*.swift'
end
spec.default_subspecs = 'Swift'
spec.framework = 'CoreGraphics', 'Foundation', 'UIKit'
spec.requires_arc = true
spec.ios.deployment_target = '11.4'
spec.swift_version = '4.1'
end