forked from elegantchaos/DictionaryCoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDictionaryCoding.podspec
More file actions
23 lines (18 loc) · 1 KB
/
DictionaryCoding.podspec
File metadata and controls
23 lines (18 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'DictionaryCoding'
s.version = '1.0.7'
s.summary = 'Swift Decoder/Encoder which converts to/from dictionaries.'
s.description = <<-DESC
This is an implementation of Swift's Encoder/Decoder protocols which uses NSDictionary as its underlying container mechanism.
It allows you to take a native swift class or struct that confirms to the Codable protocol and convert it to, or initialise it from, a dictionary.
DESC
s.homepage = 'https://github.com/elegantchaos/DictionaryCoding'
s.license = { :type => 'custom', :file => 'LICENSE.md' }
s.author = { 'Sam Deane' => 'sam@elegantchaos.com' }
s.source = { :git => 'https://github.com/elegantchaos/DictionaryCoding.git', :tag => s.version.to_s }
s.swift_version = "5.0"
s.osx.deployment_target = "10.12"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.source_files = 'Sources/DictionaryCoding/**/*'
end