-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYJNAppEntranceManager.podspec
43 lines (35 loc) · 1.31 KB
/
YJNAppEntranceManager.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
#
# Be sure to run `pod lib lint YJNAppEntranceManager.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "YJNAppEntranceManager"
s.version = "1.0.1"
s.summary = "AppDelegate管理"
s.platform = :ios, "8.0"
s.description = <<-DESC
appdelegate 管理
DESC
s.homepage = "https://github.com/yinjining/YJNAppEntranceManager"
s.author = { "殷继宁" => "[email protected]" }
s.license = {
:type => 'MIT',
:text => <<-LICENSE
LICENSE
}
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/yinjining/YJNAppEntranceManager.git", :tag => "#{s.version}" }
s.subspec 'YJNAPP' do |ss|
ss.public_header_files = "YJNAppEntranceManagerDemo/YJNAppEntranceManager/YJNAPP/*.h"
ss.source_files = "YJNAppEntranceManagerDemo/YJNAppEntranceManager/YJNAPP/*.{h,m,mm,c,cc,cpp}"
end
s.subspec 'YJNScene' do |ss|
ss.public_header_files = "YJNAppEntranceManagerDemo/YJNAppEntranceManager/YJNScene/*.h"
ss.source_files = "YJNAppEntranceManagerDemo/YJNAppEntranceManager/YJNScene/*.{h,m,mm,c,cc,cpp}"
end
s.requires_arc = true
s.frameworks = "Foundation","UIKit"
end