Added support for Cocoapods
This commit is contained in:
parent
c7bd41aa49
commit
ee9ffe68f2
|
@ -47,7 +47,7 @@ table.setAccessory(style: .disclosureIndicator)
|
|||
* Provide your own action triggered when a cell is tapped
|
||||
* Over 30 public methods to customize most aspects of TableViews - headers, cellHeight, accessories, fonts, colors and much more
|
||||
* Includes support for Documentation Compiler (DocC) to show code documentation and tips as you type
|
||||
* Supports Swift Package Manager (SPM). Support for Cocoapods coming soon.
|
||||
* Supports Swift Package Manager (SPM) and Cocoapods dependency managers.
|
||||
|
||||
|
||||
## Benefits:
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
Pod::Spec.new do |spec|
|
||||
|
||||
spec.name = "Table"
|
||||
spec.version = "1.0"
|
||||
spec.summary = "The fastest and easiest way to present a UITableView - in 3 lines of code."
|
||||
|
||||
spec.description = "The world's simplest, fastest and most customizable TableView. Create a UITableView in 3 lines of code. Powered by Generics. No need to use Table View protocols. Uses UIKit."
|
||||
|
||||
spec.homepage = "https://github.com/sivx76/Swift-Table"
|
||||
spec.screenshots = "https://raw.githubusercontent.com/sivx76/Swift-Table/main/Other/Screenshots/Collection.png"
|
||||
|
||||
|
||||
spec.license = "MIT"
|
||||
|
||||
spec.author = { "sivx76" => "sivx76@gmail.com" }
|
||||
spec.social_media_url = "https://twitter.com/sivx76"
|
||||
|
||||
|
||||
|
||||
spec.platform = :ios, "5.0"
|
||||
|
||||
spec.source = { :git => "https://github.com/sivx76/Swift-Table.git", :tag => "v1.0" }
|
||||
|
||||
|
||||
spec.source_files = "Sources/**/*"
|
||||
|
||||
spec.ios.deployment_target = '11.0'
|
||||
|
||||
spec.swift_version = '5.0'
|
||||
|
||||
|
||||
end
|
Loading…
Reference in New Issue