-
Notifications
You must be signed in to change notification settings - Fork 6
/
SwiftParamTest.podspec
37 lines (30 loc) · 1.25 KB
/
SwiftParamTest.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
34
35
36
37
Pod::Spec.new do |spec|
spec.name = "SwiftParamTest"
spec.version = "2.2.0"
spec.summary = "Parameterized test for Swift."
spec.description = <<-DESC
Parameterized test for Swift with XCTest.
DESC
spec.homepage = "https://github.com/YusukeHosonuma/SwiftParamTest"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.authors = { "Yusuke Hosonuma" => "[email protected]" }
spec.social_media_url = "https://twitter.com/tobi462"
spec.ios.deployment_target = "9.3"
# spec.osx.deployment_target = "9.3"
# spec.watchos.deployment_target = "9.3"
# spec.tvos.deployment_target = "9.3"
spec.source = { :git => "https://github.com/YusukeHosonuma/SwiftParamTest.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift}"
spec.dependency "Flatten"
spec.dependency "SHList"
spec.framework = "XCTest"
spec.user_target_xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/usr/lib',
}
spec.pod_target_xcconfig = {
'APPLICATION_EXTENSION_API_ONLY' => 'YES',
'ENABLE_BITCODE' => 'NO',
'OTHER_LDFLAGS' => '$(inherited) -Xlinker -no_application_extension -weak_framework XCTEST -weak-lXCTestSwiftSupport',
}
spec.swift_version = "5.1"
end