-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTritonKit.podspec
More file actions
18 lines (18 loc) · 930 Bytes
/
TritonKit.podspec
File metadata and controls
18 lines (18 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'TritonKit'
s.version = '0.1.0'
s.summary = 'Embedded debug runtime for TritonKit iOS view inspection.'
s.description = 'TritonKit embeds a DEBUG-only runtime in an iOS app so the Triton CLI can inspect hierarchy, accessibility, geometry, screenshots, and supported in-app controls during development.'
s.homepage = 'https://github.com/NeptuneKit/TritonKit'
s.license = {
:type => 'Custom',
:text => 'TritonKit is in active development. See the repository for current licensing and usage terms.'
}
s.author = { 'NeptuneKit' => 'https://github.com/NeptuneKit' }
s.source = { :git => 'https://github.com/NeptuneKit/TritonKit.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '13.0'
s.swift_version = '5.9'
s.source_files = 'Sources/TritonKit/**/*.swift'
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics'
s.dependency 'TritonKitShared', s.version.to_s
end