forked from ZhipingYang/XYDebugView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXYDebugView.podspec
More file actions
27 lines (22 loc) · 768 Bytes
/
XYDebugView.podspec
File metadata and controls
27 lines (22 loc) · 768 Bytes
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 = 'XYDebugView'
s.summary = 'The tool of UIView to Debug its frame'
s.description = <<-DESC
XYDebugView is debug tool to draw the all views frame in device screen and show it by 2d/3d style like reveal did.
DESC
s.version = '1.0.1'
s.homepage = "https://github.com/ZhipingYang/XYDebugView"
s.license = 'MIT'
s.authors = { 'ZhipingYang' => 'XcodeYang@gmail.com' }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/ZhipingYang/XYDebugView.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = [
"XYDebugView/**/*.{h,m}",
]
s.resources = [
"XYDebugView/resource/*.{png,xib}"
]
s.frameworks = 'UIKit'
end