|
1 | 1 | Pod::Spec.new do |s|
|
2 | 2 |
|
3 |
| - s.name = 'ios-sdk' |
| 3 | + s.name = 'Mapzen-ios-sdk' |
4 | 4 | s.version = '0.1.0'
|
5 | 5 |
|
6 | 6 | s.summary = 'Mapzen iOS SDK'
|
7 |
| - s.description = 'Mapzen iOS SDK' |
| 7 | + 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.' |
8 | 8 | s.homepage = 'https://mapzen.com/projects/mobile/'
|
9 |
| - s.license = { :type => 'MIT', :file => 'LICENSE.md' } |
| 9 | + s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.md' } |
10 | 10 | s.author = { 'Mapzen' => '[email protected]' }
|
11 | 11 | s.social_media_url = 'https://twitter.com/mapzen'
|
12 | 12 | s.documentation_url = 'https://mapzen.com/documentation/ios/'
|
13 |
| - s.source = { :git => 'https://github.com/mapzen/ios.git', :branch => 'master' } |
| 13 | + s.source = { :git => 'https://github.com/mapzen/ios.git', :tag => "v#{s.version}" } |
14 | 14 |
|
15 | 15 | s.platform = :ios
|
16 |
| - s.ios.deployment_target = '9.0' |
| 16 | + s.ios.deployment_target = '9.3' |
17 | 17 |
|
18 | 18 | s.requires_arc = true
|
19 | 19 | s.default_subspec = 'Core'
|
20 | 20 |
|
21 | 21 | s.subspec 'Core' do |cs|
|
22 |
| - cs.dependency "Pelias" |
23 |
| - cs.dependency "OnTheRoad" |
24 |
| - cs.dependency "Tangram-es" |
| 22 | + cs.dependency 'Pelias', '~> 1.0.0-beta' |
| 23 | + cs.dependency 'OnTheRoad', '~> 1.0.0-beta' |
| 24 | + cs.dependency 'Tangram-es', '~> 0.4' |
25 | 25 | cs.source_files = "src/*.swift"
|
26 | 26 | cs.resources = 'images/*.png'
|
27 | 27 | end
|
|
0 commit comments