forked from 937447974/YJTableViewFactory
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYJTableViewFactory.podspec
More file actions
45 lines (33 loc) · 1.52 KB
/
YJTableViewFactory.podspec
File metadata and controls
45 lines (33 loc) · 1.52 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Be sure to run `pod spec lint NAME.podspec.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 lint或 pod spec lint --allow-warnings
# 输出json命令:pod ipc spec YJTableViewFactory.podspec >> YJTableViewFactory.podspec.json
# 注册pod权限:pod trunk register 937447974@qq.com '阳君' --description='china beijing'
# 发包:pod trunk push YJTableViewFactory.podspec --allow-warnings
Pod::Spec.new do |s|
# ――― Spec Metadata
s.name = "YJTableViewFactory"
s.version = "1.2.0"
s.summary = "UITableView工厂,可自动填充数据源,填充Cell,缓存高。"
s.homepage = "https://github.com/937447974/YJTableViewFactory"
# ――― Spec License
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata
s.author = { "阳君" => "937447974@qq.com" }
# ――― Platform Specifics
s.platform = :ios
s.ios.deployment_target = "7.0"
# ――― Source Location
s.source = { :git => "https://github.com/937447974/YJTableViewFactory.git", :tag => "v#{s.version}" }
# ――― Source Code
s.source_files = "Classes/*.{h,m}", "Classes/*/*.{h,m}", "README.md"
# ――― Project Linking
s.frameworks = "UIKit", "Foundation"
# ――― Project Settings
s.requires_arc = true
end