-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathPagedArray.podspec
25 lines (22 loc) · 1013 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
23
24
25
Pod::Spec.new do |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" => "[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.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