-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tablier.podspec
33 lines (26 loc) · 1.08 KB
/
Tablier.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
Pod::Spec.new do |spec|
last_commit = `git rev-list --tags --max-count=1`.strip
last_tag = `git describe --tags #{last_commit}`.strip
spec.name = "Tablier"
spec.version = last_tag
spec.summary = "A micro-framework for Table Driven Tests."
spec.description = <<-DESC
Tablier makes it easy to write Table Driven Tests in Swift.
DESC
spec.homepage = "https://github.com/akkyie/Tablier"
spec.screenshots = "https://user-images.githubusercontent.com/1528813/59867231-9b508b00-93c8-11e9-8489-127d441c2a5b.png"
spec.license = "MIT"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Akio Yasui" => "[email protected]" }
spec.swift_version = "5"
spec.osx.deployment_target = "10.15"
spec.ios.deployment_target = "13.0"
spec.tvos.deployment_target = "13.0"
spec.source = { :git => "https://github.com/akkyie/Tablier.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Tablier"
spec.requires_arc = true
spec.framework = "XCTest"
spec.pod_target_xcconfig = {
"ENABLE_TESTING_SEARCH_PATHS" => "YES"
}
end