-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestpubrepo.podspec
More file actions
19 lines (16 loc) · 996 Bytes
/
testpubrepo.podspec
File metadata and controls
19 lines (16 loc) · 996 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 = "testpubrepo" # 项目名称
s.version = "1.0.4" # 版本号 与 你仓库的 标签号 对应
s.license = "MIT" # 开源证书
s.summary = "A delightful TextField of PhoneNumber" # 项目简介
s.homepage = "https://github.com/chenzbjava/pubrepo.git" # 你的主页
s.source = { :git => "https://github.com/chenzbjava/pubrepo.git", :tag => "#{s.version}" }#你的仓库地址,不能用SSH地址
s.source_files = "testSDK/*.{h,m}" # 你代码的位置, BYPhoneNumTF/*.{h,m} 表示 BYPhoneNumTF 文件夹下所有的.h和.m文件
s.platform = :ios, "8.0" #平台及支持的最低版本
# s.frameworks = "UIKit", "Foundation" #支持的框架
# s.requires_arc = true
# s.dependency = "AFNetworking" # 依赖库
# User
s.social_media_url = "https://github.com/chenzbjava/pubrepo.git" # 个人主页
end