-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKeyValueStorageSwift.podspec
More file actions
22 lines (17 loc) · 976 Bytes
/
KeyValueStorageSwift.podspec
File metadata and controls
22 lines (17 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "KeyValueStorageSwift"
spec.version = "2.1.0"
spec.summary = "Key-value storage written in Swift."
spec.description = "An elegant, multipurpose key-value storage, compatible with all Apple platforms."
spec.homepage = "https://github.com/narek-sv/KeyValueStorage"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Narek Sahakyan" => "narek.sv.work@gmail.com" }
spec.swift_version = "5.10"
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "13.0"
spec.source = { :git => "https://github.com/narek-sv/KeyValueStorage.git", :tag => "v2.1.0" }
spec.source_files = "Sources/KeyValueStorage/**/*"
spec.resource_bundles = {"KeyValueStorageSwift" => ["Sources/KeyValueStorage/Resources/PrivacyInfo.xcprivacy"]}
end