- Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathPagedArray.podspec
More file actions
Latest commit
25 lines (22 loc) · 1013 Bytes
/
Copy pathPagedArray.podspec
File metadata and controls
25 lines (22 loc) · 1013 Bytes
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.newdo |s|
s.name="PagedArray"
s.version="0.9"
s.summary="A Swift data structure for easier pagination"
s.description=<<-DESC
PagedArray is a generic Swift data structure for helping
you implement paging mechanisms in (but not limited to)
UITableViews, UICollectionViews and UIPageViewControllers.
DESC
s.homepage="https://github.com/MrAlek/PagedArray"
s.license='MIT'
s.author={"Alek Åström"=>"alek@iosnomad.com"}
s.source={:git=>"https://github.com/MrAlek/PagedArray.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/MisterAlek'
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.9'
s.watchos.deployment_target='2.0'
s.tvos.deployment_target='9.0'
s.requires_arc=true
s.source_files='Sources/*.swift'
s.frameworks='Foundation'
end