forked from apploft/APLExpandableCollectionView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPLExpandableCollectionView.podspec
More file actions
30 lines (20 loc) · 1021 Bytes
/
APLExpandableCollectionView.podspec
File metadata and controls
30 lines (20 loc) · 1021 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 = "APLExpandableCollectionView"
s.version = "0.0.4"
s.summary = "UICollectionView subclass with vertically expandable and collapsible sections"
s.description = <<-DESC
* animated expand and collapse animation
* scrolls expanded section to visible
* customizable flow layout for iPhone and iPad
* supports single and multiple expanded sections
* supports addition of sections
DESC
s.homepage = "https://github.com/apploft/APLExpandableCollectionView"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Michael Kamphausen", "Stella Sadova"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/apploft/APLExpandableCollectionView.git", :tag => s.version.to_s }
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
end