-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathYHListKit.podspec
19 lines (16 loc) · 1.06 KB
/
YHListKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "YHListKit"
s.version = "1.1.0"
s.summary = "一个轻量级的数据驱动列表框架。A lightweight data-driven list framework for building fast and easy-to-use lists."
s.description = <<-DESC
YHListKit 是一个基于 UICollectionView 的、轻量级的数据驱动列表框架,其核心思想在于通过 Adapter 模式将繁琐的 UICollectionView 相关代理方法转变成数据驱动的接口,更贴近人类的思维方式,让创建复杂 feeds 流列表跟写配置文件一样 easy。
DESC
s.homepage = "https://github.com/ShannonChenCHN/YHListKit"
s.license = 'MIT'
s.author = {"ShannonChenCHN" => "[email protected]"}
s.source = {:git => "https://github.com/ShannonChenCHN/YHListKit.git", :tag => 'v1.1.0'}
s.requires_arc = true
s.screenshot = 'https://github.com/ShannonChenCHN/YHListKit/raw/master/src/preview.gif'
s.platform = :ios, '7.0'
s.source_files = 'YHListKit/**/*.{h,m}'
end