Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDataDecoder.podspec
More file actions
Latest commit
32 lines (25 loc) · 1.06 KB
/
Copy pathDataDecoder.podspec
File metadata and controls
32 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Be sure to run `pod lib lint DataDecoder.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.newdo |s|
s.name='DataDecoder'
s.version='5.0.0'
s.summary='Swift Data Decoder. Easily Decode Data values'
s.description=<<-DESC
Swift Data Decoder. Easily Decode Data values.
DESC
s.homepage='https://github.com/FitnessKit/DataDecoder'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Kevin A. Hoogheem'=>'kevin@hoogheem.net'}
s.source={:git=>'https://github.com/FitnessKit/DataDecoder.git',:tag=>s.version.to_s}
s.pod_target_xcconfig={'SWIFT_VERSION'=>'5.0'}
s.ios.deployment_target='10.0'
s.osx.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='3.0'
s.source_files='Sources/**/*'
end