forked from steipete/InterposeKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterposeKit.podspec
More file actions
16 lines (16 loc) · 836 Bytes
/
InterposeKit.podspec
File metadata and controls
16 lines (16 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'InterposeKit'
s.version = '0.0.2'
s.summary = 'A modern library to swizzle elegantly in Swift.'
s.homepage = 'https://github.com/steipete/InterposeKit'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Peter Steinberger' => 'steipete@gmail.com' }
s.source_files = 'Sources/**/*.{h,c,swift}'
s.swift_versions = ['5.2']
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '5.0'
end