-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSwiftySRP.podspec
More file actions
19 lines (18 loc) · 905 Bytes
/
SwiftySRP.podspec
File metadata and controls
19 lines (18 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'SwiftySRP'
spec.version = '3.1'
spec.ios.deployment_target = "12.0"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.summary = 'Swift implementation of SRP'
spec.homepage = 'https://github.com/flockoffiles/SwiftySRP'
spec.author = 'Sergey Novitsky'
spec.source = { :git => 'https://github.com/flockoffiles/SwiftySRP.git', :tag => 'v' + String(spec.version) }
spec.source_files = 'SwiftySRP/*.{h,swift}', 'imath/*.{c,h}'
spec.module_map = 'SwiftySRP/module.modulemap'
spec.public_header_files = 'SwiftySRP/**/*.h'
spec.private_header_files = 'imath/*.h'
spec.documentation_url = 'https://github.com/flockoffiles/SwiftySRP/'
spec.dependency 'FFDataWrapper', '~> 2.2'
spec.swift_version = '5.0'
spec.preserve_paths = 'README', 'SwiftySRPTests/*.swift'
end