forked from MrAlek/PagedArray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPagedArray.podspec
22 lines (19 loc) · 895 Bytes
/
PagedArray.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "PagedArray"
s.version = "0.3"
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" => "[email protected]" }
s.source = { :git => "https://github.com/MrAlek/PagedArray.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/MisterAlek'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Source/*'
s.frameworks = 'Foundation'
end