Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathMoreCodable.podspec
More file actions
Latest commit
26 lines (21 loc) · 985 Bytes
/
Copy pathMoreCodable.podspec
File metadata and controls
26 lines (21 loc) · 985 Bytes
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
Pod::Spec.newdo |s|
s.name='MoreCodable'
s.version='1.3.2'
s.summary='MoreCodable expands the possibilities of Codable.'
s.description=<<-DESC
MoreCodable expands the possibilities of Codable.
It contains DictionaryEncoder/Decoder, URLQueryItemsEncoder/Decoder, ObjectMerger and so on...
DESC
s.homepage='https://github.com/tattn/MoreCodable'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'git'=>'tanakasan2525@gmail.com'}
s.source={:git=>'https://github.com/tattn/MoreCodable.git',:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/tanakasan2525'
s.ios.deployment_target='13.0'
# s.osx.deployment_target = '10.10'
s.watchos.deployment_target='6.0'
s.tvos.deployment_target='13.0'
s.source_files='Sources/*.{swift,h}'
s.public_header_files='Sources/*.h'
s.frameworks='Foundation'
end