-
Notifications
You must be signed in to change notification settings - Fork 204
/
LTScrollView.podspec
28 lines (21 loc) · 999 Bytes
/
LTScrollView.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
Pod::Spec.new do |s|
s.name = 'LTScrollView'
s.version = '0.4.5'
s.summary = 'LTScrollView'
s.description = <<-DESC
TODO: ScrollView嵌套ScrolloView解决方案(初级、进阶), 支持OC / Swift,实现原理:http://blog.csdn.net/glt_code/article/details/78576628
DESC
s.homepage = 'https://github.com/gltwy/LTScrollView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/gltwy/LTScrollView.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.subspec 'LTLoopsPlay' do |p|
p.source_files = 'Example/LTScrollView/Lib/LTLoopsPlay/*.{swift}'
end
s.subspec 'LTFollowMove' do |f|
f.source_files = 'Example/LTScrollView/Lib/LTFollowMove/*.{swift}'
end
s.source_files = 'Example/LTScrollView/Lib/**/*.{swift}'
end