-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCucumberSwift.podspec
30 lines (23 loc) · 1.26 KB
/
CucumberSwift.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
Pod::Spec.new do |s|
s.name = 'CucumberSwift'
s.version = '5.0.3'
s.summary = 'A lightweight swift only cucumber implementation.'
s.description = <<-DESC
This is a swift only cucumber implementation. This particular implementation contains feature, scenario and step level hooks that Cucumberish does not and has the added benefit of not requiring an objective-c bridging header
DESC
s.homepage = 'https://github.com/Tyler-Keith-Thompson/CucumberSwift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tyler Thompson' => '[email protected]' }
s.source = { :git => 'https://github.com/Tyler-Keith-Thompson/CucumberSwift.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.4'
s.source_files = 'Sources/**/*.{swift,h,m}'
s.exclude_files = 'Sources/CucumberSwift/CucumberSwift.docc/'
s.dependency "CucumberSwiftExpressions"
s.framework = "XCTest"
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"',
}
end