Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKJLoading.podspec
More file actions
Latest commit
32 lines (25 loc) · 1 KB
/
Copy pathKJLoading.podspec
File metadata and controls
32 lines (25 loc) · 1 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
Pod::Spec.newdo |s|
s.name="KJLoading"
s.version="1.2.5"
s.summary="Loading Animation."
s.homepage="https://github.com/yangKJ/KJLoadingDemo"
s.license="MIT"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.license="Copyright (c) 2019 77"
s.author={"77"=>"393103982@qq.com"}
s.platform=:ios
s.source={:git=>"https://github.com/yangKJ/KJLoadingDemo.git",:tag=>"#{s.version}"}
s.social_media_url='https://www.jianshu.com/u/c84c00476ab6'
s.requires_arc=true
s.default_subspec='KJLoading'
s.ios.source_files='KJLoadingDemo/KJLoadingHeader.h'
s.subspec'KJLoading'do |ss|
ss.source_files="KJLoadingDemo/KJLoading/**/*.{h,m}"
ss.resources="KJLoadingDemo/KJLoading/**/*.{bundle}"
end
s.subspec'KJProgressHUD'do |a|
a.source_files="KJLoadingDemo/KJProgressHUD/**/*.{h,m}"
a.dependency'KJLoading/KJLoading'
end
s.frameworks='Foundation','UIKit','CoreText'
end