-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectDecoder.podspec
21 lines (17 loc) · 965 Bytes
/
ObjectDecoder.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'ObjectDecoder'
s.version = '0.3.0'
s.summary = 'A Swift Class that decodes basic structures such as Dictionaries and Arrays.'
s.description = <<-DESC
ObjectDecoder is a Swift Class that allows for decoding common Swift types such as Dictionary and Array. Use object decoder to convert data models that conform to Decodable from basic structures.
DESC
s.homepage = 'https://github.com/LucasBest/ObjectDecoder'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Lucas Best' => '[email protected]' }
s.source = { :git => 'https://github.com/LucasBest/ObjectDecoder.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/thereallu5'
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'ObjectDecoder/Classes/**/*'
end