-
Notifications
You must be signed in to change notification settings - Fork 62
/
FRDIntent.podspec
27 lines (20 loc) · 989 Bytes
/
FRDIntent.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
Pod::Spec.new do |s|
s.name = "FRDIntent"
s.version = "0.10.4"
s.summary = "FRDIntent can handle the call between view controller"
s.description = "FRDIntent has two components URLRoutes and Intent, using for calling view controllers inner app or outer app."
s.homepage = "https://github.com/douban/FRDIntent"
s.license = { :type => 'MIT', :text => 'LICENSE' }
s.author = { "lincode" => "guolin@douban.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/douban/FRDIntent.git", :tag => "#{s.version}" }
s.subspec 'Intent' do |intent|
intent.source_files = 'FRDIntent/Source/*.h','FRDIntent/Source/Intent/**/*.{swift,h,m}', 'FRDIntent/Source/Core/**/*.swift'
intent.frameworks = 'UIKit'
end
s.subspec 'URLRoutes' do |urlroutes|
urlroutes.source_files = 'FRDIntent/Source/URLRoutes/*.swift'
urlroutes.dependency 'FRDIntent/Intent'
end
s.default_subspec = 'URLRoutes'
end