From ec1a61a10ea9ff9041b1656f28d614b3680a2d72 Mon Sep 17 00:00:00 2001 From: XcodeYang Date: Thu, 25 May 2017 11:05:37 +0800 Subject: [PATCH] add podspec --- XYDebugView.podspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 XYDebugView.podspec diff --git a/XYDebugView.podspec b/XYDebugView.podspec new file mode 100644 index 0000000..7eecbc0 --- /dev/null +++ b/XYDebugView.podspec @@ -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' => '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/XYDebugView/**/*' + +s.frameworks = 'UIKit' + +end