-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPageCollectionViewLayout.podspec
More file actions
23 lines (19 loc) · 1.08 KB
/
PageCollectionViewLayout.podspec
File metadata and controls
23 lines (19 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "PageCollectionViewLayout"
s.version = "0.0.1"
s.summary = "A quick and dirty UICollectionFlowLayout that mimics some of the UIPageViewController."
s.description = <<-DESC
I did not like how the UIPageViewController handled data. I didn't really need a new viewcontroller for each screen so I developed a UICollectionViewLay (subclass of UICollectionFlowLayout) that would mimic the look but would allow me to preform data updates similar to that of the UITableViewContoller.
DESC
s.homepage = "https://github.com/someoneAnyone/PageCollectionViewLayout"
s.license = 'MIT'
s.author = { "Pete" => "peter.ina@gmail.com" }
s.source = { :git => "https://github.com/someoneAnyone/PageCollectionViewLayout.git", :tag => s.version }
s.social_media_url = 'https://twitter.com/peter_ina'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'PageCollectionViewLayout' => ['Pod/Assets/*.png']
}
end