您的位置:首页 > 其它

pod spec 配置文件

2018-03-26 10:55 176 查看
Pod::Spec.new do |s|
  
 s.name = "DistOpenFile"
  
 s.version = "1.0.5"
  
 s.summary = "A Library for iOS DistOpenFile."
  
 s.homepage = "https://github.com/lishiyong-github/DistOpenFile"
  
 s.license = "MIT"
  
 s.author = { "lishiyong-github" => "1525846137@qq.com" }
  
 s.source = { :git => "https://github.com/lishiyong-github/DistOpenFile.git", :tag => s.version }
  
 s.source_files = "FileView/OpenFile/*.{h,m}"
  
 s.framework = 'UIKit'
  
 s.ios.deployment_target = '8.0'
  
 s.platform = :ios,"7.0"
  
 s.dependency "AFNetworking", '~> 3.1.0'
  
 s.dependency "PureLayout",'~>3.0.2'
  
 s.dependency "DISTXAspect"
  
 ends.dependency 可以连续多个
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: