-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTodoClient.podspec
More file actions
27 lines (20 loc) · 840 Bytes
/
TodoClient.podspec
File metadata and controls
27 lines (20 loc) · 840 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
27
# coding: utf-8
Pod::Spec.new do |s|
s.name = "TodoClient"
s.version = "0.1.0"
s.summary = "TodoClient for Contract Test Demo"
s.description = <<-DESC
TodoClient to use the Todo Backend Service to showcase
Consumer driven contract testing using Pact
DESC
s.homepage = "https://github.com/rajatvig/pact-demo-client"
s.license = "MIT"
s.author = { "Rajat Vig" => "rajatvig@gmail.com" }
s.social_media_url = "https://twitter.com/rajatvig"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/rajatvig/pact-demo-client.git", :tag => "#{s.version}" }
s.source_files = ["Sources/*.swift", "Sources/Models/*.swift"]
s.dependency "Alamofire", "~> 3.4"
s.dependency "SwiftyJSON", "~> 2.3"
end