-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathYStaticContentTableView.podspec
More file actions
28 lines (22 loc) · 1.23 KB
/
YStaticContentTableView.podspec
File metadata and controls
28 lines (22 loc) · 1.23 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
#
# Be sure to run `pod lib lint YStaticContentTableView.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'YStaticContentTableView'
s.version = '0.1.2'
s.summary = 'Cleanly implement a table view much like those in Settings.app, using a simple, convienent block-based syntax.'
s.description = <<-DESC
A subclass-able way to cleanly and neatly implement a table view much like those in Settings.app, with nice-looking fields to collect or display information, all using a simple and convienent block-based syntax
DESC
s.homepage = 'https://github.com/LiZunYuan/YStaticContentTableView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Leal' => 'codekami@qq.com' }
s.source = { :git => 'https://github.com/LiZunYuan/YStaticContentTableView.git', :tag => s.version.to_s }
s.ios.deployment_target = '6.0'
s.source_files = 'YStaticContentTableView/Classes/**/*'
s.dependency 'UITableView+FDTemplateLayoutCell', '~> 1.4'
end