forked from Incetro/DAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNIO.podspec
More file actions
22 lines (18 loc) · 789 Bytes
/
NIO.podspec
File metadata and controls
22 lines (18 loc) · 789 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 = "NIO"
spec.version = "1.0.6"
spec.summary = "Elegant DAO implementation written in Swift"
spec.homepage = "https://github.com/incetro/NIO.git"
spec.license = "MIT"
spec.authors = { "incetro" => "incetro@ya.ru" }
spec.requires_arc = true
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "10.0"
spec.source = { git: "https://github.com/incetro/NIO.git", tag: "#{spec.version}"}
spec.source_files = "Sources/Nio/**/*.{h,swift}"
spec.dependency "Reflex"
spec.dependency "Monreau"
spec.dependency "Transformer"
end