-
Notifications
You must be signed in to change notification settings - Fork 569
/
JXPagingView.podspec
25 lines (21 loc) · 1.07 KB
/
JXPagingView.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
Pod::Spec.new do |s|
s.name = "JXPagingView"
s.version = "2.1.4"
s.summary = "类似微博主页、简书主页等效果。多页面嵌套,既可以上下滑动,也可以左右滑动切换页面。支持HeaderView悬浮、支持下拉刷新、上拉加载更多。"
s.homepage = "https://github.com/pujiaxin33/JXPagingView"
s.author = { "pujiaxin33" => "[email protected]" }
s.platform = :ios, "9.0"
s.swift_versions = ["4.2", "5.0"]
s.source = { :git => "https://github.com/pujiaxin33/JXPagingView.git", :tag => "#{s.version}" }
s.source_files = "JXPagingView", "Sources/JXPagingView/**/*.swift"
s.license = "MIT"
s.subspec 'Pager' do |pager|
pager.source_files = 'JXPagerView', 'Sources/JXPagerView/**/*.{h,m}'
pager.resource_bundles = {"JXPagerView" => ["Sources/PrivacyInfo.xcprivacy"]}
end
s.subspec 'Paging' do |paging|
paging.source_files = "JXPagingView", "Sources/JXPagingView/**/*.swift"
paging.resource_bundles = {"JXPagingView" => ["Sources/PrivacyInfo.xcprivacy"]}
end
s.requires_arc = true
end