-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathICSerializer.podspec
More file actions
24 lines (18 loc) · 1.06 KB
/
Copy pathICSerializer.podspec
File metadata and controls
24 lines (18 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
Pod::Spec.new do |s|
s.name = 'ICSerializer'
s.version = '1.0.8'
s.summary = 'A serializer that will do deep clones of infinitely nested json graphs.'
s.description = <<-DESC
A serializer that will do deep clones of infinitely nested json graphs. Much like the latest version of Codable in Swift 4, you don't have to write any boiler plate code for ICSerializer to serialize/deserialize your objects. Just make your classes inherit from ICSerializable and you're done
DESC
s.homepage = 'https://icontrolapp.se/en'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'sellingsolutions' => 'alexander@icontrolapp.se' }
s.source = { :git => 'https://github.com/sellingsolutions/ICSerializer.git', :tag => '1.0.8' }
s.social_media_url = 'https://www.linkedin.com/in/alexanderselling/'
s.swift_version = '4.0'
s.ios.deployment_target = '15.0'
s.requires_arc = true
s.source_files = 'ICSerializer/Classes/**/*.swift'
s.frameworks = 'Foundation'
end