-
Notifications
You must be signed in to change notification settings - Fork 2
/
HBHybridCollectionView.podspec
40 lines (34 loc) · 1.46 KB
/
HBHybridCollectionView.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# Be sure to run `pod spec lint HBHybridCollectionView.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 http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "HBHybridCollectionView"
s.version = "1.0.7"
s.summary = "Hybrid scroll collection view."
s.homepage = "https://github.com/Ban-Tang/HBHybridCollectionView"
s.author = { "Liang" => "[email protected]" }
s.description = <<-DESC
A collection for hybrid scrolling, you can use a swipe list in a collection footer.
DESC
s.platform = :ios, "8.0"
s.requires_arc = true
s.license = { :type => "MIT", :file => "LICENSE" }
s.source = { :git => "https://github.com/Ban-Tang/HBHybridCollectionView.git", :tag => "#{s.version}" }
s.source_files = "hybrid/Hybrid/**/*.{h,m}"
s.private_header_files = [
"hybrid/Hybrid/HybridCollectionViewObserver.h",
"hybrid/Hybrid/HybridCollectionViewProxy.h",
]
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64',
'VALID_ARCHS' => 'x86_64 armv7 arm64',
}
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'x86_64 armv7 arm64',
'VALID_ARCHS' => 'x86_64 armv7 arm64',
}
end