forked from Tyler-Keith-Thompson/CucumberSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CucumberSwift.podspec
38 lines (30 loc) · 1.52 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
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = 'CucumberSwift'
s.version = '3.3.24'
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' => 'Tyler.Thompson@Asynchrony.com' }
s.source = { :git => 'https://github.com/Tyler-Keith-Thompson/CucumberSwift.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.swift_version = '5.4'
s.source_files = 'Sources/**/*.{swift,h,m}'
s.exclude_files = 'Sources/CucumberSwift/CucumberSwift.docc/'
s.resources = ["Sources/**/*.{json}"]
s.subspec 'snippets' do |ss|
ss.resources = ["Sources/**/*.{codesnippet,sh}"]
end
s.subspec 'syntax' do |ss|
ss.resources = ["Sources/CucumberSwift/Gherkin/**/*.{xclangspec,sh,ideplugin}"]
end
s.dependency "CucumberSwiftExpressions"
s.framework = "XCTest"
s.pod_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"',
}
end