-
Notifications
You must be signed in to change notification settings - Fork 48
/
TLTransitions.podspec
48 lines (35 loc) · 1.43 KB
/
TLTransitions.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
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = 'TLTransitions'
s.version = '1.5.1'
s.license = 'MIT'
s.ios.deployment_target = '8.0'
s.platform = :ios, '8.0'
s.summary = 'Fast implement transitions for view or viewController'
s.homepage = 'https://github.com/LoongerTao/TLTransitions'
s.author = { 'LoongerTao' => '[email protected]' }
s.requires_arc = true
s.source = { :git => 'https://github.com/LoongerTao/TLTransitions.git', :tag => s.version }
s.public_header_files = 'TLTransitions/TLTransitions.h'
s.source_files = 'TLTransitions/TLTransitions.h'
s.subspec 'Config' do |cfg|
cfg.source_files = 'TLTransitions/Config/*.{h,m}'
cfg.ios.frameworks = 'UIKit'
end
s.subspec 'TransitionView' do |tv|
tv.source_files = 'TLTransitions/TransitionView/*.{h,m}'
tv.dependency 'TLTransitions/Config'
end
s.subspec 'TransitionController' do |tc|
tc.source_files = 'TLTransitions/TransitionController/*.{h,m}'
tc.dependency 'TLTransitions/Config'
tc.subspec 'Animator' do |anm|
anm.source_files = 'TLTransitions/TransitionController/Animator/*.{h,m}'
anm.dependency 'TLTransitions/Config'
end
end
end
# 错误:xcodebuild: Returned an unsuccessful exit code.
# 一般是有头文件相互依赖,pod检测通不过
#
# [!] There was an error pushing a new version to trunk: execution expired
# 网络问题,更换网络