-
Notifications
You must be signed in to change notification settings - Fork 19
/
MapboxAnnotationExtension.podspec
39 lines (23 loc) · 2.22 KB
/
MapboxAnnotationExtension.podspec
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
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MapboxAnnotationExtension"
s.version = "0.0.1-beta.2"
s.summary = "Extension to support Mapbox's runtime styling annotations api."
s.description = "Provides an object oriented annotation api around runtime styling."
s.homepage = "http://www.mapbox.com/"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "ISC", :file => "LICENSE.md" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.authors = { 'Mapbox' => 'mobile@mapbox.com' }
s.social_media_url = "http://twitter.com/mapbox"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/mapbox/mapbox-annotation-extension.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "MapboxAnnotationExtension/**/*.{h,m}"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.module_name = "MapboxAnnotationExtension"
s.dependency "Mapbox-iOS-SDK", "~> 6.0"
end