Skip to content

Commit 3edd36b

Browse files
authored
Merge pull request #153 from mapzen/podspecUpdate
Update podspec to 0.1.0 for release
2 parents 086a66e + 04e60cb commit 3edd36b

File tree

3 files changed

+19
-41
lines changed

3 files changed

+19
-41
lines changed

Podfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
platform :ios, '9.0'
1+
platform :ios, '9.3'
22
use_frameworks!
33

44
def shared_pods
5-
pod 'Pelias', :git => 'https://github.com/pelias/pelias-ios-sdk.git', :branch => 'master'
6-
pod 'OnTheRoad', :git => 'https://github.com/mapzen/on-the-road_ios.git', :branch => 'master'
7-
pod 'Tangram-es', :git => 'https://github.com/tangrams/ios-framework.git', :branch => 'master'
5+
pod 'Pelias', '~> 1.0.0-beta'
6+
pod 'OnTheRoad', '~> 1.0.0-beta'
7+
pod 'Tangram-es', '~> 0.4'
88
end
99

1010
target "ios-sdk" do

Podfile.lock

+7-29
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,18 @@ PODS:
33
- Pelias (1.0.0-beta3):
44
- Pelias/Core (= 1.0.0-beta3)
55
- Pelias/Core (1.0.0-beta3)
6-
- Tangram-es (0.1.0)
6+
- Tangram-es (0.4.0)
77

88
DEPENDENCIES:
9-
- OnTheRoad (from `https://github.com/mapzen/on-the-road_ios.git`, branch `master`)
10-
- Pelias (from `https://github.com/pelias/pelias-ios-sdk.git`, branch `master`)
11-
- Tangram-es (from `https://github.com/tangrams/ios-framework.git`, branch `master`)
12-
13-
EXTERNAL SOURCES:
14-
OnTheRoad:
15-
:branch: master
16-
:git: https://github.com/mapzen/on-the-road_ios.git
17-
Pelias:
18-
:branch: master
19-
:git: https://github.com/pelias/pelias-ios-sdk.git
20-
Tangram-es:
21-
:branch: master
22-
:git: https://github.com/tangrams/ios-framework.git
23-
24-
CHECKOUT OPTIONS:
25-
OnTheRoad:
26-
:commit: 8b65272e369dfa07c1255eee6130a2df79b6da9e
27-
:git: https://github.com/mapzen/on-the-road_ios.git
28-
Pelias:
29-
:commit: ba13625b8445c5b7a8b8de08b702fcf2425ad9c9
30-
:git: https://github.com/pelias/pelias-ios-sdk.git
31-
Tangram-es:
32-
:commit: f7a96d812a27b012620cb5f63de4e770c01b85db
33-
:git: https://github.com/tangrams/ios-framework.git
9+
- OnTheRoad (~> 1.0.0-beta)
10+
- Pelias (~> 1.0.0-beta)
11+
- Tangram-es (~> 0.4)
3412

3513
SPEC CHECKSUMS:
3614
OnTheRoad: 994e273d08efcfb598195f6235bf48d1e525602e
37-
Pelias: 73fe42b321402cfe5beaeeb2dd4625ce897ffffe
38-
Tangram-es: 0b836ead54f672545dc5bfcf0ae46e6f4b97c1ff
15+
Pelias: 79a3ca6332a7cb48945b5d044f564b95f13a516e
16+
Tangram-es: 49354b4ba6bbd180c2db90f79b4ed957f68e7525
3917

40-
PODFILE CHECKSUM: c5f76346e1f9ed6d4fb353437cbb5c798f8f9061
18+
PODFILE CHECKSUM: d28cc38afbc26b27972877b46d3b976b73861b15
4119

4220
COCOAPODS: 1.1.1

ios-sdk.podspec

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
Pod::Spec.new do |s|
22

3-
s.name = 'ios-sdk'
3+
s.name = 'Mapzen-ios-sdk'
44
s.version = '0.1.0'
55

66
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.'
88
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' }
1010
s.author = { 'Mapzen' => '[email protected]' }
1111
s.social_media_url = 'https://twitter.com/mapzen'
1212
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}" }
1414

1515
s.platform = :ios
16-
s.ios.deployment_target = '9.0'
16+
s.ios.deployment_target = '9.3'
1717

1818
s.requires_arc = true
1919
s.default_subspec = 'Core'
2020

2121
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'
2525
cs.source_files = "src/*.swift"
2626
cs.resources = 'images/*.png'
2727
end

0 commit comments

Comments
 (0)