-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathFFDataWrapper.podspec
More file actions
16 lines (16 loc) · 838 Bytes
/
Copy pathFFDataWrapper.podspec
File metadata and controls
16 lines (16 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = 'FFDataWrapper'
spec.version = '2.2'
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.10"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.summary = 'Wrapper for data or string objects with custom internal storage'
spec.homepage = 'https://github.com/flockoffiles/FFDataWrapper'
spec.author = 'Sergey Novitsky'
spec.source = { :git => 'https://github.com/flockoffiles/FFDataWrapper.git', :tag => 'v' + String(spec.version) }
spec.source_files = 'FFDataWrapper/*.swift',
spec.public_header_files = 'FFDataWrapper/*.h'
spec.documentation_url = 'https://github.com/flockoffiles/FFDataWrapper/'
spec.swift_version = '5.0'
spec.preserve_paths = 'README.md', 'FFDataWrapperTests/*.swift'
end