YH_Lumberjack.podspec
1.06 KB
#
# Be sure to run `pod spec lint YH_Lumberjack.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = 'YH_Lumberjack'
s.version = '0.2.0'
s.summary = 'A wrapped log system for CocoaLumberjack.'
s.description = <<-DESC
A wrapped log system for CocoaLumberjack.
DESC
s.homepage = 'http://git.yoho.cn/ios/YH_Lumberjack'
s.license = 'MIT'
s.author = { 'Xu gaoqiang' => 'eric.xu@yoho.cn' }
s.requires_arc = true
s.platform = :ios, '10.0'
s.source = { :git => 'http://git.yoho.cn/ios/YH_Lumberjack.git', :tag => s.version.to_s }
s.dependency 'CocoaLumberjack'
s.frameworks = 'Foundation'
s.default_subspec = 'CocoaLumberjack+YOHO'
s.subspec 'CocoaLumberjack+YOHO' do |ss|
ss.source_files = 'YH_Lumberjack/*'
end
end