-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathResponderChain.podspec
More file actions
17 lines (16 loc) · 853 Bytes
/
Copy pathResponderChain.podspec
File metadata and controls
17 lines (16 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'ResponderChain'
s.version = '1.1.2'
s.summary = 'Cross-platform first responder handling without subclassing views or making custom ViewRepresentables in SwiftUI'
s.license = { type: 'MIT' }
s.homepage = 'https://github.com/Amzd/ResponderChain'
s.author = { 'Casper Zandbergen' => 'info@casperzandbergen.nl' }
s.source = { :git => 'https://github.com/Amzd/ResponderChain.git', :tag => s.version.to_s }
s.dependency 'Introspect', '0.1.2'
s.dependency 'SwizzleSwift'
s.source_files = 'Sources/**/*.swift'
s.swift_version = '5.1'
s.ios.deployment_target = '11.0'
# s.tvos.deployment_target = '11.0' # SwizzleSwift doesn't support tvos on cocoapods
# s.osx.deployment_target = '10.13' # SwizzleSwift doesn't support osx on cocoapods
end