-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
XcodeYang
committed
May 25, 2017
1 parent
52dee0c
commit ec1a61a
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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 = '0.0.1' | ||
s.homepage = "https://github.com/ZhipingYang/XYDebugView" | ||
s.license = 'MIT' | ||
s.authors = { 'ZhipingYang' => '[email protected]' } | ||
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/XYDebugView/**/*' | ||
|
||
s.frameworks = 'UIKit' | ||
|
||
end |