-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathXYDebugView.podspec
More file actions
23 lines (22 loc) · 972 Bytes
/
XYDebugView.podspec
File metadata and controls
23 lines (22 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'XYDebugView'
s.version = '2.0.0'
s.summary = 'A lightweight 2D / 3D UIKit hierarchy debugger.'
s.description = <<-DESC
XYDebugView helps inspect UIKit view hierarchies with 2D outlines, 3D exploded layers,
focus controls, and an index tree browser, all from a lightweight CocoaPods package.
DESC
s.homepage = 'https://github.com/ZhipingYang/XYDebugView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ZhipingYang' => 'XcodeYang@gmail.com' }
s.source = { :git => 'https://github.com/ZhipingYang/XYDebugView.git', :tag => s.version.to_s }
s.platform = :ios, '12.0'
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.source_files = 'XYDebugView/**/*.{h,m}'
s.public_header_files = [
'XYDebugView/XYDebugViewManager.h',
'XYDebugView/XYdebugConst.h'
]
s.frameworks = 'UIKit'
end