-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstraintChecker.podspec
More file actions
24 lines (17 loc) · 1.09 KB
/
ConstraintChecker.podspec
File metadata and controls
24 lines (17 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'ConstraintChecker'
s.version = '0.1.2'
s.summary = 'ambiguous constraint debugger'
s.description = <<-DESC
A tool that help you find ambiguous constraint automatically,just install it(only in debug mode will be much safer),no extra configration needed;
Once some ambiguous constraints discoverd,a flashing button will appeared on top of the screen.Click it will log all infomation to console which will be great help for identify the problem,meanwhile the condemned view will be marked with red border.
Only the view hierarchy being diplayed will be checked.
DESC
s.homepage = 'https://github.com/willice9527/ConstraintChecker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'willice9527' => 'nwpu_liuzhou@163.com' }
s.source = { :git => 'https://github.com/willice9527/ConstraintChecker.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'ConstraintChecker/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
end