forked from lyft/Lyft-iOS-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLyftSDK.podspec
More file actions
20 lines (18 loc) · 731 Bytes
/
LyftSDK.podspec
File metadata and controls
20 lines (18 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'LyftSDK'
s.version = '1.0.6'
s.summary = 'The official Lyft iOS SDK.'
s.homepage = 'https://github.com/lyft/lyft-iOS-sdk'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'Gilad Gurantz' => 'gilad@lyft.com' }
s.source = { :git => 'https://github.com/lyft/lyft-iOS-sdk.git', :tag => s.version.to_s }
s.default_subspec = 'Core'
s.ios.deployment_target = '8.0'
s.subspec 'Core' do |core|
core.source_files = 'Sources/**/*.swift'
core.resources = ['Sources/LyftUI/Resources/**']
end
s.subspec 'API' do |api|
api.source_files = 'Sources/{LyftAPI,LyftModels}/**/*.swift'
end
end