-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCombineExpectations.podspec
More file actions
22 lines (19 loc) · 837 Bytes
/
CombineExpectations.podspec
File metadata and controls
22 lines (19 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'CombineExpectations'
s.version = '0.10.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A set of extensions for SQLite, GRDB.swift, and Combine'
s.homepage = 'https://github.com/groue/CombineExpectations'
s.author = { 'Gwendal Roué' => 'gr@pierlis.com' }
s.source = { :git => 'https://github.com/groue/CombineExpectations.git', :tag => "v#{s.version}" }
s.swift_versions = ['5.1', '5.2', '5.3', '5.4']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '7.4'
s.frameworks = ['Combine', 'XCTest']
s.source_files = 'Sources/CombineExpectations/**/*.swift'
s.pod_target_xcconfig = {
"ENABLE_TESTING_SEARCH_PATHS" => "YES" # Required for Xcode 12.5
}
end