forked from DiUS/pact-consumer-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PactConsumerSwift.podspec
33 lines (26 loc) · 1.3 KB
/
PactConsumerSwift.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
30
31
32
33
Pod::Spec.new do |s|
s.name = "PactConsumerSwift"
s.module_name = "PactConsumerSwift"
s.version = "0.5.1"
s.summary = "A Swift / ObjeciveC DSL for creating pacts."
s.license = { :type => 'MIT' }
s.description = <<-DESC
This library provides a Swift / Objective C DSL for creating Consumer [Pacts](http://pact.io).
Implements [Pact Specification v2](https://github.com/pact-foundation/pact-specification/tree/version-2),
including [flexible matching](http://docs.pact.io/documentation/matching.html).
DESC
s.homepage = "https://github.com/DiUS/pact-consumer-swift"
s.author = { "andrewspinks" => "[email protected]", "markojustinek" => "[email protected]" }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/DiUS/pact-consumer-swift.git", :tag => "v#{s.version}" }
s.source_files = 'Sources/**/*.swift'
s.resources = 'scripts/start_server.sh', 'scripts/stop_server.sh'
s.requires_arc = true
s.frameworks = 'XCTest'
s.dependency 'Alamofire', '~> 4.5'
s.dependency 'BrightFutures', '~> 6.0'
s.dependency 'Nimble', '~> 7.0'
s.dependency 'Quick', '~> 1.1'
end