Files
TrustKit/TrustKit.podspec
T
Adam Kaplan ffd63b1f38 Reliable support for use as both Framework and static library via
Cocoapods. Fixed umbrella header and non-modular includes. Removed
excess configs from the project file around module packaging.
2017-06-08 18:50:00 -04:00

27 lines
1.0 KiB
Ruby

Pod::Spec.new do |s|
s.name = "TrustKit"
s.version = "1.5.0"
s.summary = 'TrustKit is an open source framework that makes it easy to deploy SSL pinning in any iOS, macOS, tvOS or watchOS App.'
s.homepage = "https://datatheorem.github.io/TrustKit"
s.documentation_url = 'https://datatheorem.github.io/TrustKit/documentation/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Alban Diquet', 'Angela Chow', 'Eric Castro'
s.source = { :git => "https://github.com/datatheorem/TrustKit.git", :tag => "#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = ['TrustKit', 'TrustKit/**/*.{h,m,c}']
s.public_header_files = [
'TrustKit/TrustKit.h',
'TrustKit/TSKTrustKitConfig.h',
'TrustKit/TSKPinningValidator.h',
'TrustKit/TSKPinValidatorResult.h',
'TrustKit/Pinning/TSKPublicKeyAlgorithm.h'
]
s.frameworks = ['Foundation', 'Security']
s.requires_arc = true
end