-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSJListKit.podspec
More file actions
29 lines (24 loc) · 1.1 KB
/
SJListKit.podspec
File metadata and controls
29 lines (24 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'SJListKit'
s.version = '1.4.0'
s.summary = 'Handy wrapper for IGListKit'
s.description = <<-DESC
SJListKit is a small wapper for Instagram's library IGListKit created by SuperJob.
Main features are:
1) Easy work with autolayout cells in sections
2) Support for different supplementary views in one list section
3) Autolayout for supplementary views
4) Handy wrappers for reload, insert, delete and update of cells
DESC
s.homepage = 'https://github.com/superjobru/SJListKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alexander Danilyak' => 'a.danilyak@superjob.ru' }
s.source = { :git => 'https://github.com/superjobru/SJListKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/adanilyak'
s.ios.deployment_target = '8.0'
s.source_files = 'SJListKit/Classes/**/*'
s.dependency 'IGListKit', '~> 3.0'
s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxCocoa', '~> 4.0'
s.dependency 'SnapKit', '~> 4.0'
end