-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZYCocoTouch.podspec
More file actions
19 lines (17 loc) · 1022 Bytes
/
Copy pathZYCocoTouch.podspec
File metadata and controls
19 lines (17 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "ZYCocoTouch" # 项目名称
s.version = "1.0.0" # 版本号 与 你仓库的 标签号 对应
s.license = "MIT" # 开源证书
s.summary = "A ZYCocoTouch 工程" # 项目简介
s.homepage = "https://github.com/PentaKillTerminator/ZYCocoTouch" # 你的主页
s.source = { :git => "https://github.com/PentaKillTerminator/ZYCocoTouch.git", :tag => "#{s.version}" }#你的仓库地址,不能用SSH地址
s.source_files = "ZYCocoTouchClass/*.{h,m}" # 你代码的位置, BYPhoneNumTF/*.{h,m} 表示 BYPhoneNumTF 文件夹下所有的.h和.m文件
s.requires_arc = true # 是否启用ARC
s.platform = :ios, "7.0" #平台及支持的最低版本
s.frameworks = "UIKit", "Foundation" #支持的框架
#s.dependency = "AFNetworking" # 依赖库
#
# User
s.author = { "Mr.Z" => "1365986695@qq.com" } # 作者信息
s.social_media_url = "https://github.com/PentaKillTerminator" # 个人主页
end