加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Module_OPH.podspec 1017 Bytes
一键复制 编辑 原始数据 按行查看 历史
御剑 提交于 2020-12-22 13:50 . fix: 将git更改成https
Pod::Spec.new do |s|
s.name = "Module_OPH" # 项目名称
s.version = "0.0.2" # 版本号 与 你仓库的 标签号 对应
s.license = "MIT" # 开源证书
s.summary = "WorkPlus Lite iOS版本的网络框架" # 项目简介
s.homepage = "https://gitee.com/workplus-lite/module_oph.git" # 仓库的主页
s.source = { :git => "https://gitee.com/workplus-lite/module_oph.git", :tag => "#{s.version}" }#你的仓库地址,不能用SSH地址
s.source_files = "Module_OPH/**/*.{h,m}" # 你代码的位置, BYPhoneNumTF/*.{h,m} 表示 BYPhoneNumTF 文件夹下所有的.h和.m文件
s.requires_arc = true # 是否启用ARC
s.platform = :ios, "9.0" #平台及支持的最低版本
s.frameworks = "Foundation" #支持的框架
s.dependency 'AFNetworking', '~> 3.0'
s.dependency "CocoaLumberjack" # 依赖库
s.static_framework = true
# User
s.author = { "lingen.liu" => "lingen.liu@gmail.com" } # 作者信息
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化