| 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 = '1.0.0' |
| 12 | s.swift_version = '5.7.3' |
| 13 | s.summary = 'A UITableView with detachable section and row.' |
| 14 | |
| 15 | # This description is used to generate tags and improve search results. |
| 16 | # * Think: What does it do? Why did you write it? What is the focus? |
| 17 | # * Try to keep it short, snappy and to the point. |
| 18 | # * Write the description between the DESC delimiters below. |
| 19 | # * Finally, don't worry about the indent, CocoaPods strips it! |
| 20 | |
| 21 | s.description = <<~DESC |
| 22 | 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. |
| 23 | DESC |
| 24 | |
| 25 | s.homepage = 'https://github.com/setoelkahfi/JomloTableView' |
| 26 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' |
| 27 | s.license = { type: 'MIT', file: 'LICENSE' } |
| 28 | s.author = { 'Seto Elkahfi' => 'setoelkahfi@gmail.com' } |
| 29 | s.source = { git: 'https://github.com/setoelkahfi/JomloTableView.git', tag: s.version.to_s } |
| 30 | s.social_media_url = 'https://twitter.com/setoelkahfi' |
| 31 | |
| 32 | s.ios.deployment_target = '14.0' |
| 33 | s.tvos.deployment_target = '14.0' |
| 34 | |
| 35 | s.source_files = 'Sources/JomloTableView/**/*' |
| 36 | |
| 37 | # s.resource_bundles = { |
| 38 | # 'JomloTableView' => ['JomloTableView/Assets/*.png'] |
| 39 | # } |
| 40 | |
| 41 | # s.public_header_files = 'Pod/Classes/**/*.h' |
| 42 | # s.frameworks = 'UIKit', 'MapKit' |
| 43 | # s.dependency 'AFNetworking', '~> 2.3' |
| 44 | end |