-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDataManager.podspec
More file actions
26 lines (20 loc) · 952 Bytes
/
DataManager.podspec
File metadata and controls
26 lines (20 loc) · 952 Bytes
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 = "DataManager"
s.version = "2.1.0"
s.summary = "DataManager is a small utility class that helps you manage Core Data."
s.description = <<-DESC
DataManager takes care of Core Data boilerplate code for you. It handles setting up the Core Data stack with support for asynchronous saves. It also includes a few simple fetch and deletion methods.
DESC
s.homepage = "https://github.com/metova/DataManager"
s.license = "MIT"
s.author = { "Logan Gauthier" => "logan.gauthier@metova.com" }
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "10.0"
s.tvos.deployment_target = "17.0"
s.platform = :ios, '12.0'
s.swift_version = '5.0'
s.source = { :git => "https://github.com/metova/DataManager.git", :tag => s.version.to_s }
s.source_files = "Sources/*.swift"
s.framework = "CoreData"
end