-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSDAO.podspec
More file actions
23 lines (19 loc) · 825 Bytes
/
SDAO.podspec
File metadata and controls
23 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "SDAO"
spec.version = "2.6.0"
spec.summary = "Elegant DAO implementation written in Swift"
spec.homepage = "https://github.com/incetro/DAO.git"
spec.license = "MIT"
spec.authors = { "incetro" => "incetro@ya.ru" }
spec.requires_arc = true
spec.swift_version = "5.2"
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.watchos.deployment_target = "6.0"
spec.tvos.deployment_target = "12.4"
spec.source = { git: "https://github.com/incetro/DAO.git", tag: "#{spec.version}"}
spec.source_files = "Sources/SDAO/**/*.{h,swift}"
spec.dependency "Monreau"
spec.dependency "Realm"
spec.dependency "RealmSwift"
end