YH_AFNetworking.podspec
1008 Bytes
Pod::Spec.new do |s|
s.name = "YH_AFNetworking"
s.version = "1.0.0"
s.summary = "YH_AFNetworking"
s.description = <<-DESC
YH_AFNetworking
DESC
s.homepage = ""
s.license = 'MIT'
s.author = { "wangqj" => "arthur.wang@yoho.cn" }
s.source = { :git => "http://git.dev.yoho.cn/utility/yh_afnetworking.git",
:branch => 'master',
:tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.subspec 'AFNetworking' do |ss|
ss.source_files = 'AFNetworking/AFNetworking/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'UIKit+AFNetworking' do |ss|
ss.source_files = 'AFNetworking/UIKit+AFNetworking/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'Aspects' do |ss|
ss.source_files = 'Aspects/*.{h,m}'
ss.requires_arc = true
end
s.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'
end