forked from hellohappy/XModules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXDebuger.podspec
More file actions
26 lines (22 loc) · 808 Bytes
/
XDebuger.podspec
File metadata and controls
26 lines (22 loc) · 808 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
Pod::Spec.new do |s|
s.name = "XDebuger"
s.version = "0.0.1"
s.summary = "工厂化模组-debuger"
s.description = <<-DESC
*构建项目常用组件
*debuger
DESC
s.homepage = "http://ibcker.me"
s.license = 'Apache'
s.author = { "ibcker" => "happymiyu@gmail.com" }
s.source = { :git => "https://github.com/ibcker/XModules.git"}
s.source_files = 'XModules/debuger/**/*.{h,m}'
s.frameworks = 'UIKit','QuartzCore'
s.requires_arc = true
s.platform = :ios, '7.0'
s.compiler_flags = '-w'
# s.default_subspec = 'reveal' #有一个bug,设定debug模式下依赖不生效,release下也会加载reveal
# s.subspec 'reveal' do |ss|
# ss.dependency 'Reveal-iOS-SDK'
# end
end