forked from nalexn/ViewInspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewInspector.podspec
27 lines (21 loc) · 907 Bytes
/
ViewInspector.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
Pod::Spec.new do |s|
s.name = "ViewInspector"
s.version = "0.9.6"
s.summary = "ViewInspector is a library for unit testing SwiftUI views."
s.homepage = "https://github.com/nalexn/ViewInspector"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexey Naumov" => "[email protected]" }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
#s.watchos.deployment_target = '7.0'
s.swift_version = '5.7'
s.framework = 'XCTest'
s.source = { :git => "https://github.com/nalexn/ViewInspector.git", :tag => "#{s.version}" }
s.source_files = 'Sources/ViewInspector/**/*.swift'
s.pod_target_xcconfig = { 'ENABLE_TESTING_SEARCH_PATHS' => 'YES' }
s.test_spec 'Tests' do |unit|
unit.source_files = 'Tests/ViewInspectorTests/**/*.swift'
unit.resources = 'Tests/ViewInspectorTests/TestResources/**/*'
end
end