-
Notifications
You must be signed in to change notification settings - Fork 14
/
PersistenceKit.podspec
26 lines (22 loc) · 1.06 KB
/
PersistenceKit.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 = "PersistenceKit"
s.version = "1.5"
s.summary = "
Store and retrieve Codable objects to various persistence layers, in a couple lines of code! "
s.description = <<-DESC
You love Swift's Codable protocol and use it everywhere, who doesn't! Here is an easy and very light way to store and retrieve Codable objects to various persistence layers, in a couple lines of code!
DESC
s.homepage = "https://github.com/Teknasyon-Teknoloji/PersistenceKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.social_media_url = "http://www.teknasyon.com/"
s.authors = { "Omar Albeik" => "https://twitter.com/omaralbeik" }
s.module_name = "PersistenceKit"
s.source = { :git => "https://github.com/Teknasyon-Teknoloji/PersistenceKit.git", :tag => s.version }
s.source_files = "Sources/**/*.swift"
s.swift_version = "5.0"
s.requires_arc = true
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
end