-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
MoreCodable.podspec
26 lines (21 loc) · 985 Bytes
/
MoreCodable.podspec
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.new do |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' => '[email protected]' }
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