forked from MobileUpLLC/ListController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListController.podspec
More file actions
20 lines (15 loc) · 832 Bytes
/
ListController.podspec
File metadata and controls
20 lines (15 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "ListController"
spec.version = "1.0.6"
spec.summary = "An abstraction layer to deal with listable data"
spec.description = "Provides an abstraction layer to deal with listable data. It's a simpler and faster way to build table views on top of this than from scratch."
spec.homepage = "https://github.com/MobileUpLLC/ListController"
spec.license = "MIT"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "MobileUp iOS Team" => "hello@mobileup.ru" }
spec.platform = :ios, "13.0"
spec.ios.frameworks = 'UIKit'
spec.swift_version = ['5']
spec.source = { :git => 'https://github.com/MobileUpLLC/ListController.git', :tag => spec.version.to_s }
spec.source_files = "Sources/", "Sources/**/*.{swift}"
end