-
Notifications
You must be signed in to change notification settings - Fork 0
/
FTTestingKit.podspec
29 lines (27 loc) · 1.1 KB
/
FTTestingKit.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 = "FTTestingKit"
s.version = "0.5.0"
s.summary = "Mockup and asynchronous testing protocols and extensions."
s.description = <<-DESC
Testing helpers for easier testing mockups and asynchronous testing.
DESC
s.homepage = "https://github.com/futuredapp/FTTestingKit"
s.license = { type: "MIT", file: "LICENSE" }
s.author = { "Matěj Kašpar Jirásek" => "matej.jirasek@futured.app" }
s.social_media_url = "https://twitter.com/Futuredapps"
s.default_subspec = 'Core'
s.swift_version = "5.0"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source = { git: "https://github.com/futuredapp/FTTestingKit.git", tag: s.version.to_s }
s.subspec 'Core' do |ss|
ss.source_files = "Sources/FTTestingKit/*"
ss.frameworks = ["Foundation", "XCTest"]
end
s.subspec 'PromiseKit' do |ss|
ss.source_files = 'Sources/FTTestingKitPromiseKit/*'
ss.dependency 'PromiseKit', '~> 6.11'
ss.dependency 'FTTestingKit/Core'
end
end