forked from mapzen/ios
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMapzen-ios-sdk.podspec
More file actions
30 lines (24 loc) · 1.29 KB
/
Mapzen-ios-sdk.podspec
File metadata and controls
30 lines (24 loc) · 1.29 KB
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
Pod::Spec.new do |s|
s.name = 'Mapzen-ios-sdk'
s.version = '1.2.0'
s.summary = 'Mapzen iOS SDK'
s.description = 'The Mapzen iOS SDK is a thin wrapper that packages up everything you need to use Mapzen services in your iOS applications. It also simplifies setup, installation, API key management, and generally makes your life better.'
s.homepage = 'https://mapzen.com/projects/mobile/'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.md' }
s.author = { 'Mapzen' => 'ios-support@mapzen.com' }
s.social_media_url = 'https://twitter.com/mapzen'
s.documentation_url = 'https://mapzen.com/documentation/ios/'
s.source = { :git => 'https://github.com/mapzen/ios.git', :tag => "v#{s.version}", :submodules => true }
s.platform = :ios
s.ios.deployment_target = '9.3'
s.requires_arc = true
s.default_subspec = 'Core'
s.prepare_command = "swift scripts/setup_version.swift #{s.version}"
s.subspec 'Core' do |cs|
cs.dependency 'Pelias', '~> 1.0.2'
cs.dependency 'OnTheRoad', '~> 1.0.1'
cs.dependency 'Tangram-es', '~> 0.9.6'
cs.source_files = ['MapzenSDK/*.swift', 'MapzenSDK/*/*.swift']
cs.resources = [ 'images/*.png', 'housestyles.bundle', 'version.plist' ]
end
end