forked from mapbox/mbxmapkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMBXMapKit.podspec
More file actions
32 lines (23 loc) · 852 Bytes
/
MBXMapKit.podspec
File metadata and controls
32 lines (23 loc) · 852 Bytes
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
Pod::Spec.new do |m|
m.name = 'MBXMapKit'
m.version = '0.1.0'
m.summary = 'One-line MapBox integration with MapKit on iOS and OS X.'
m.description = 'One-line MapBox integration with MapKit on iOS and OS X for custom map styles and complete cache control.'
m.homepage = 'http://mapbox.com/mbxmapkit'
m.license = 'BSD'
m.author = { 'MapBox' => 'ios@mapbox.com' }
m.source = { :git => 'https://github.com/mapbox/mbxmapkit.git', :tag => m.version.to_s }
m.ios.deployment_target = '7.0'
m.osx.deployment_target = '10.9'
m.source_files = 'MBXMapKit.{h,m}'
m.requires_arc = true
m.documentation = {
:html => 'http://mapbox.com/mbxmapkit/api/',
:appledoc => [
'--project-company', 'MapBox',
'--docset-copyright', 'MapBox',
'--ignore', '.m',
]
}
m.framework = 'MapKit'
end