-
Notifications
You must be signed in to change notification settings - Fork 64
/
XCTest-Gherkin.podspec
42 lines (35 loc) · 1.38 KB
/
XCTest-Gherkin.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
39
40
41
42
#
# Be sure to run `pod lib lint XCTest-Gherkin.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "XCTest-Gherkin"
s.version = "0.21.2"
s.summary = "Gherkin style tests"
s.description = <<-DESC
Adds Gherkin syntax to XCTestCase
DESC
s.homepage = "https://github.com/net-a-porter-mobile/XCTest-Gherkin"
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { "Sam Dean" => "deanWombourne@gmail.com" }
s.source = { :git => "https://github.com/net-a-porter-mobile/XCTest-Gherkin.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.swift_version = [ '4.0', '4.2', '5.0' ]
s.default_subspec = 'Core'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10.0'
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.subspec 'Core' do |ss|
ss.source_files = 'Pod/Core/**/*'
end
s.subspec 'Native' do |ss|
ss.source_files = [ 'Pod/Native/**/*.swift', 'Pod/Native/**/*.m', 'Pod/Native/**/*.h' ]
ss.resources = ["Pod/Native/gherkin-languages.json"]
ss.dependency 'XCTest-Gherkin/Core'
end
s.frameworks = 'XCTest'
end