-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from mapzen/podspecUpdate
Update podspec to 0.1.0 for release
- Loading branch information
Showing
3 changed files
with
19 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = 'ios-sdk' | ||
s.name = 'Mapzen-ios-sdk' | ||
s.version = '0.1.0' | ||
|
||
s.summary = 'Mapzen iOS SDK' | ||
s.description = '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 => 'MIT', :file => 'LICENSE.md' } | ||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.md' } | ||
s.author = { 'Mapzen' => '[email protected]' } | ||
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', :branch => 'master' } | ||
s.source = { :git => 'https://github.com/mapzen/ios.git', :tag => "v#{s.version}" } | ||
|
||
s.platform = :ios | ||
s.ios.deployment_target = '9.0' | ||
s.ios.deployment_target = '9.3' | ||
|
||
s.requires_arc = true | ||
s.default_subspec = 'Core' | ||
|
||
s.subspec 'Core' do |cs| | ||
cs.dependency "Pelias" | ||
cs.dependency "OnTheRoad" | ||
cs.dependency "Tangram-es" | ||
cs.dependency 'Pelias', '~> 1.0.0-beta' | ||
cs.dependency 'OnTheRoad', '~> 1.0.0-beta' | ||
cs.dependency 'Tangram-es', '~> 0.4' | ||
cs.source_files = "src/*.swift" | ||
cs.resources = 'images/*.png' | ||
end | ||
|