-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathJDRouter.podspec
More file actions
36 lines (23 loc) · 845 Bytes
/
Copy pathJDRouter.podspec
File metadata and controls
36 lines (23 loc) · 845 Bytes
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
Pod::Spec.new do |s|
s.name = "JDRouter"
s.version = '2.0.0'
s.summary = "JDRouter"
s.description = <<-DESC
JDRouter
DESC
s.homepage = "https://github.com/JDongKhan/JDRouter.git"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "wangjindong" => "419591321@qq.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/JDongKhan/JDRouter.git", :tag => s.version.to_s }
s.subspec 'Intent' do |ss|
ss.source_files = 'Sources/Intent/*.{h,m}'
ss.public_header_files = 'Sources/Intent/*.h'
end
s.subspec 'Annotation' do |cc|
cc.source_files = 'Sources/Annotation/*.{h,m}'
cc.public_header_files = 'Sources/Annotation/*.h'
end
s.frameworks = 'Foundation', 'UIKit'
s.requires_arc = true
end