forked from DiUS/pact-consumer-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPactConsumerSwift.podspec
27 lines (20 loc) · 1.01 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
Pod::Spec.new do |s|
s.name = "PactConsumerSwift"
s.version = "0.1.3"
s.summary = "A Swift / ObjeciveC DSL for creating pacts."
s.license = { :type => 'MIT' }
s.description = <<-DESC
This codebase provides a iOS DSL for creating pacts. If you are new to Pact, please read the Pact README first.
This DSL relies on the Ruby pact-mock_service gem to provide the mock service for the iOS tests.
DESC
s.homepage = "https://github.com/DiUS/pact-consumer-swift"
s.author = { "andrewspinks" => "[email protected]" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/DiUS/pact-consumer-swift.git", :tag => "v#{s.version}" }
s.source_files = 'PactConsumerSwift/**/*.swift'
s.resources = 'scripts/start_server.sh', 'scripts/stop_server.sh'
s.requires_arc = true
s.frameworks = 'Foundation', 'UIKit', 'XCTest'
s.dependency 'Alamofire', '~> 1.2'
s.dependency 'BrightFutures', '~> 1.0'
end