-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPICollectionPageView.podspec
More file actions
30 lines (20 loc) · 960 Bytes
/
PICollectionPageView.podspec
File metadata and controls
30 lines (20 loc) · 960 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
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "PICollectionPageView"
s.version = "0.0.2"
s.summary = "A UICollectionView base page view"
s.description = <<-DESC
A UICollectionView base page view
- Can be use as drop in for `UICollectionView`,
- Reuse most of `UICollectionView` delegate methods
- Simple interface and very easy to use.
DESC
s.homepage = "https://github.com/phamquy/PICollectionPageView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Pham Quy" => "phamsyquybk@gmail.com" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/phamquy/PICollectionPageView.git", :tag => s.version}
s.source_files = "PICollectionPageView/**/*.{h,m}"
s.framework = 'UIKit'
s.requires_arc = true
s.public_header_files = 'PICollectionPageView/*.h'
end