-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPagedLists.podspec
24 lines (20 loc) · 987 Bytes
/
PagedLists.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'PagedLists'
s.version = '1.0.0'
s.summary = 'Paged UITableView and UICollectionView for iOS.'
s.description = <<-DESC
Custom UITableView and UICollectionView classes to easily handle pagination.
Multiple scrolling directions for pagination supported.
Uses delegation to load content from your desired source.
DESC
s.homepage = 'https://github.com/rootstrap/PagedLists'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'German Lopez' => 'german@rootstrap.com' }
s.source = { :git => 'https://github.com/rootstrap/PagedLists.git', :tag => s.version.to_s }
s.social_media_url = 'https://www.rootstrap.com/'
s.ios.deployment_target = '9.3'
s.source_files = 'Sources/**/*'
s.frameworks = 'UIKit'
s.swift_version = '5.2'
end