-
Notifications
You must be signed in to change notification settings - Fork 123
/
PagingKit.podspec
29 lines (23 loc) · 1.4 KB
/
PagingKit.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
25
26
27
28
29
#
# Be sure to run `pod lib lint StringStylizer.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "PagingKit"
s.version = "1.18.2"
s.summary = "PagingKit provides customisable menu & content UI."
s.swift_version = '5.1'
s.description = <<-DESC
There are many libaries providing "Paging UI" which has menu and content area. They are convinience but not customizable because your app have to make compatible with the library about layout and design. When It doesn't fit the libaries, you need to fork the library or find another one.
PagingKit has more flexible layout and design than the other libraries. You can construct "Menu" and "Content" UI, and they work together. That's all features this library provides. You can fit layout and design of Pagingin UI to your apps as you like.
DESC
s.homepage = "https://github.com/kazuhiro4949/PagingKit"
s.license = 'MIT'
s.author = { "Kazuhiro Hayashi" => "k.hayashi.info@gmail.com" }
s.source = { :git => "https://github.com/kazuhiro4949/PagingKit.git", :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = "Sources/**/*.{h,m,swift}"
end