-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
92 lines (78 loc) · 2.75 KB
/
Podfile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
platform :ios, '6.0'
pod 'AFNetworking', '1.0'
pod 'FormatterKit', '1.0.1'
pod 'TTTAttributedLabel', '1.2'
pod do |s|
s.platform = :ios
s.name = 'BButton'
s.version = '0.0.1'
s.author = {"Mathieu Bolard" => "mattlawer08@gmail.com"}
s.license = "BSD"
s.source = { :git => "https://github.com/mattlawer/BButton.git"}
s.source_files = "BButton/BButton.{h,m}"
s.requires_arc = true
end
pod do |m|
m.name = 'MapBox'
m.version = '0.4.3'
m.summary = 'Open source alternative to MapKit.'
m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.'
m.homepage = 'http://mapbox.com/mobile'
m.license = 'BSD'
m.author = { 'Justin R. Miller' => 'justin@mapbox.com' }
m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :commit => "12c3800fab06c3dd932de612b8fcbc6c1bbb4799"}
m.platform = :ios, '5.0'
m.source_files = 'MapView/Map/*.{h,c,m}'
m.prefix_header_file = 'MapView/MapView_Prefix.pch'
m.resources = 'MapView/Map/Resources/*'
m.documentation = {
:html => 'http://mapbox.com/mapbox-ios-sdk/api/',
:appledoc => [
'--project-company', 'MapBox',
'--docset-copyright', 'MapBox',
'--no-keep-undocumented-objects',
'--no-keep-undocumented-members',
'--ignore', '.c',
'--ignore', '.m',
'--ignore', 'Proj4',
'--ignore', 'RMAttributionViewController.h',
'--ignore', 'RMConfiguration.h',
'--ignore', 'RMCoordinateGridSource.h',
'--ignore', 'RMDBMapSource.h',
'--ignore', 'RMFoundation.h',
'--ignore', 'RMFractalTileProjection.h',
'--ignore', 'RMGenericMapSource.h',
'--ignore', 'RMGlobalConstants.h',
'--ignore', 'RMLoadingTileView.h',
'--ignore', 'RMMapOverlayView.h',
'--ignore', 'RMMapQuestOpenAerialSource.h',
'--ignore', 'RMMapQuestOSMSource.h',
'--ignore', 'RMMapScrollView.h',
'--ignore', 'RMMapTiledLayerView.h',
'--ignore', 'RMNotifications.h',
'--ignore', 'RMOpenCycleMapSource.h',
'--ignore', 'RMOpenSeaMapLayer.h',
'--ignore', 'RMOpenSeaMapSource.h',
'--ignore', 'RMPath.h',
'--ignore', 'RMPixel.h',
'--ignore', 'RMProjection.h',
'--ignore', 'RMTile.h',
'--ignore', 'RMTileImage.h',
'--ignore', 'RMTileSourcesContainer.h',
]
}
m.framework = 'CoreGraphics'
m.framework = 'CoreLocation'
m.framework = 'Foundation'
m.framework = 'QuartzCore'
m.framework = 'UIKit'
m.library = 'sqlite3'
m.library = 'z'
m.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
m.dependency 'FMDB', '2.0'
m.dependency 'GRMustache', '4.2.0'
m.subspec 'Proj4' do |p|
p.platform = :ios, '4.0'
p.source_files = FileList['Proj4/*.{h,c}'].exclude(/nad2nad/)
end
end