-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRToolBox.podspec
28 lines (26 loc) · 1 KB
/
CRToolBox.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
28
Pod::Spec.new do |s|
s.name = "CRToolBox"
s.version = "0.3.0"
s.swift_version = '5.0'
#主要标题
s.summary = "Swift开发者的工具箱"
#详细描述
s.description = <<-DESC
CR开发iOS项目中所用到的懒人用法分享给大家
DESC
#仓库主页
s.homepage = "https://github.com/ChaoRenYuan/CRToolBox.git"
s.license = "MIT"
s.author = { "chaorenyuan" => "[email protected]" }
s.platform = :ios,'10.0'
#仓库地址
s.source = { :git => "https://github.com/ChaoRenYuan/CRToolBox.git", :tag => "#{s.version}" }
#s.public_header_files = "CRToolBox/ExtensionTools/*.h"
s.source_files = "CRToolBox/Tools", "CRToolBox/Extensions/Foundation", "CRToolBox/Extensions/UIKit"
s.framework = "UIKit","Foundation"
s.requires_arc = true
s.dependency 'Kingfisher', '5.15.7'
s.dependency 'SwifterSwift', '5.2.0'
s.dependency 'SwiftyJSON', '4.3.0'
s.dependency 'SwiftDate', '6.3.0'
end