mirror of
https://github.com/ProtonMail/apple-fusion.git
synced 2026-04-15 09:07:29 +00:00
24 lines
907 B
Ruby
24 lines
907 B
Ruby
Pod::Spec.new do |spec|
|
|
|
|
spec.name = "fusion"
|
|
spec.version = "2.0.1"
|
|
spec.summary = "UI test library that simplifies XCTest syntax, reduces test flakiness and improves test code readability."
|
|
spec.homepage = "https://github.com/protonmail"
|
|
spec.license = "Proton Mail"
|
|
spec.author = "Denys Zelenchuk"
|
|
|
|
spec.ios.deployment_target = "11.0"
|
|
spec.osx.deployment_target = '11.0'
|
|
|
|
spec.source = { :git => ".", :commit => "" }
|
|
spec.ios.source_files = "Sources/iOS/**/*.swift",
|
|
"Sources/Common/**/*.swift"
|
|
spec.osx.source_files = "Sources/Mac/**/*.swift",
|
|
"Sources/Common/**/*.swift"
|
|
spec.frameworks = 'XCTest'
|
|
spec.static_framework = true
|
|
spec.pod_target_xcconfig = {
|
|
"ENABLE_TESTING_SEARCH_PATHS" => "YES" # Required for Xcode 12.5
|
|
}
|
|
end
|