forked from flockoffiles/FFDataWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFFDataWrapper.podspec
More file actions
17 lines (17 loc) · 873 Bytes
/
FFDataWrapper.podspec
File metadata and controls
17 lines (17 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = 'FFDataWrapper'
spec.version = '1.9'
spec.ios.deployment_target = "9.3"
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 = '4.2'
# spec.dependency '', '~> 0.0.0'
spec.preserve_paths = 'README.md', 'FFDataWrapperTests/*.swift'
end