-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSIScrollViewWrap.podspec
More file actions
27 lines (23 loc) · 1.01 KB
/
SIScrollViewWrap.podspec
File metadata and controls
27 lines (23 loc) · 1.01 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
Pod::Spec.new do |s|
s.name = "SIScrollViewWrap"
s.version = "1.0.5"
s.summary = "ScrollViewWrap With Model"
s.description = <<-DESC
A ScrollViewWrap With Model
DESC
s.homepage = "https://github.com/silence0201/UIScrollViewWrap"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Silence" => "374619540@qq.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/silence0201/UIScrollViewWrap.git", :tag => "1.0.5" }
s.subspec 'UITableView' do |ss|
ss.source_files = 'UIScrollViewWrap/{UITableView,Common}/**/*.{h,m}'
ss.public_header_files = 'UIScrollViewWrap/{UITableView,Common}/**/*.{h}'
end
s.subspec 'UICollectionView' do |ss|
ss.source_files = 'UIScrollViewWrap/{UICollection,Common}/**/*.{h,m}'
ss.public_header_files = 'UIScrollViewWrap/{UICollection,Common}/**/*.{h}'
end
s.requires_arc = true
s.dependency "UITableView+FDTemplateLayoutCell", "~> 1.4"
end