-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSPRoutable.podspec
More file actions
29 lines (22 loc) · 917 Bytes
/
SPRoutable.podspec
File metadata and controls
29 lines (22 loc) · 917 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
Pod::Spec.new do |s|
s.name = 'SPRoutable'
s.version = '1.0.0'
s.license = 'MIT'
s.summary = '基础的路由服务'
s.homepage = 'https://github.com/linhay/Routable'
s.author = { 'linhey' => 'is.linhay@outlook.com' }
s.source = { :git => 'https://github.com/linhay/Routable.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.source_files = ['Sources/*.{swift,h}']
s.public_header_files = ['Sources/Routable.h']
s.osx.exclude_files = ['Sources/Routale+UIKit.swift']
s.watchos.exclude_files = ['Sources/Routale+UIKit.swift']
s.tvos.exclude_files = ['Sources/Routale+UIKit.swift']
s.dependency 'RoutableAssist', '0.2.2'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.requires_arc = true
end