|
1
|
# |
|
2
|
# Be sure to run `pod lib lint JomloTableView.podspec' to ensure this is a |
|
3
|
# valid spec before submitting. |
|
4
|
# |
|
5
|
# Any lines starting with a # are optional, but their use is encouraged |
|
6
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html |
|
7
|
# |
|
8
|
|
|
9
|
Pod::Spec.new do |s| |
|
10
|
s.name = 'JomloTableView' |
|
11
|
s.version = '0.2.0' |
|
12
|
s.summary = 'A UITableView with detachable section and row.' |
|
13
|
|
|
14
|
# This description is used to generate tags and improve search results. |
|
15
|
# * Think: What does it do? Why did you write it? What is the focus? |
|
16
|
# * Try to keep it short, snappy and to the point. |
|
17
|
# * Write the description between the DESC delimiters below. |
|
18
|
# * Finally, don't worry about the indent, CocoaPods strips it! |
|
19
|
|
|
20
|
s.description = <<-DESC |
|
21
|
JomloTableView uses detachable section and row. You can add multiple section individually and add rows to each section. See example project for how to use this library. |
|
22
|
DESC |
|
23
|
|
|
24
|
s.homepage = 'https://github.com/setoelkahfi/JomloTableView' |
|
25
|
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' |
|
26
|
s.license = { :type => 'MIT', :file => 'LICENSE' } |
|
27
|
s.author = { 'Seto Elkahfi' => 'setoelkahfi@gmail.com' } |
|
28
|
s.source = { :git => 'https://github.com/setoelkahfi/JomloTableView.git', :tag => s.version.to_s } |
|
29
|
s.social_media_url = 'https://twitter.com/setoelkahfi' |
|
30
|
|
|
31
|
s.ios.deployment_target = '8.0' |
|
32
|
|
|
33
|
s.source_files = 'JomloTableView/Classes/**/*' |
|
34
|
|
|
35
|
# s.resource_bundles = { |
|
36
|
# 'JomloTableView' => ['JomloTableView/Assets/*.png'] |
|
37
|
# } |
|
38
|
|
|
39
|
# s.public_header_files = 'Pod/Classes/**/*.h' |
|
40
|
# s.frameworks = 'UIKit', 'MapKit' |
|
41
|
# s.dependency 'AFNetworking', '~> 2.3' |
|
42
|
end |