-
Notifications
You must be signed in to change notification settings - Fork 20
/
PostgresClientKit.podspec
29 lines (24 loc) · 1.05 KB
/
PostgresClientKit.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
27
28
29
Pod::Spec.new do |spec|
spec.name = "PostgresClientKit"
spec.version = "1.5.0"
spec.summary = "A PostgreSQL client library for Swift. Does not require libpq."
spec.homepage = "https://github.com/codewinsdotcom/PostgresClientKit"
spec.license = "Apache License, Version 2.0"
spec.author = "David Pitfield"
spec.description = <<-DESC
PostgresClientKit provides a friendly Swift API for operating against a PostgreSQL database.
Features:
- Doesn't require libpq
- Developer-friendly API using modern Swift
- Safe conversion between Postgres and Swift types
- Memory efficient
- SSL/TLS support
DESC
spec.swift_version = "5.0"
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.source = { :git => "https://github.com/codewinsdotcom/PostgresClientKit.git", :tag => "v#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.dependency "BlueSocket", "~> 1.0"
spec.dependency "BlueSSLService", "~> 1.0"
end