forked from cloudant/swift-cloudant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftCloudant.podspec
29 lines (18 loc) · 932 Bytes
/
SwiftCloudant.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 |s|
s.name = "SwiftCloudant"
s.version = "0.7.0"
s.summary = "SwiftCloudant is a client library for Apache CouchDB / IBM Cloudant from Swift 3"
s.description = <<-DESC
SwiftCloudant is a client library for interacting with
Apache CouchDB / IBM Cloudant from Swift 3.
It provides an operation based API for performing actions
with the Apache CouchDB HTTP API.
DESC
s.homepage = "https://github.com/cloudant/swift-cloudant"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "IBM Cloudant" => "[email protected]" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/cloudant/swift-cloudant.git", :tag => s.version.to_s}
s.source_files = "Classes", "Source/**/*.swift"
end