-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJHCollectionViewComponent.podspec
More file actions
36 lines (25 loc) · 1.25 KB
/
JHCollectionViewComponent.podspec
File metadata and controls
36 lines (25 loc) · 1.25 KB
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
31
32
33
34
35
36
#
# Be sure to run `pod spec lint JHCollectionViewComponent.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "JHCollectionViewComponent"
spec.version = "1.0.1"
spec.summary = "UICollectionView组件化库"
spec.description = <<-DESC
利用React-Native和Weex中组件的思想,将UICollectionView布局的页面进行组件化,解决复杂页面的扩展性和可维护性问题
DESC
spec.homepage = "https://github.com/JH90iOS/CollectionViewComponent"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "jinhua"
spec.social_media_url = "https://github.com/JH90iOS"
spec.platform = :ios
spec.source = { :git => "https://github.com/JH90iOS/CollectionViewComponent.git", :tag => "#{spec.version}" }
spec.source_files = "Classes"
spec.public_header_files = "Classes/*.h"
spec.frameworks = "Foundation", "UIKit"
spec.dependency "IGListKit"
end