-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAGTimerManager.podspec
27 lines (23 loc) · 1.34 KB
/
AGTimerManager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Be sure to run `pod spec lint AGVerifyManager.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "AGTimerManager" # 项目名称
s.version = "0.5.3" # 版本号 与 你仓库的 标签号 对应
s.license = "MIT" # 开源证书
s.summary = "倒计时 - 定时器" # 项目简介
s.homepage = "https://github.com/JohnnyB0Y/AGTimerManager" # 你的主页
s.source = { :git => "https://github.com/JohnnyB0Y/AGTimerManager.git", :tag => "#{s.version}" }#你的仓库地址,不能用SSH地址
s.source_files = "AGTimerManager/AGTimerManager/*.{h,m}" # 你代码的位置, AGViewModel/*.{h,m} 表示 AGViewModel 文件夹下所有的.h和.m文件
s.requires_arc = true # 是否启用ARC
s.platform = :ios, "7.0" #平台及支持的最低版本
s.frameworks = "UIKit", "Foundation" #支持的框架
# s.dependency = "AFNetworking" # 依赖库
# User
s.author = { "JohnnyB0Y" => "[email protected]" } # 作者信息
s.social_media_url = "https://johnnyb0y.github.io/" # 个人主页
end