Authored by Justin R. Miller

podpsec formatting improvements

... ... @@ -11,18 +11,22 @@ Pod::Spec.new do |m|
m.screenshot = 'https://raw.github.com/mapbox/mapbox-ios-sdk/packaging/screenshot.png'
m.social_media_url = 'https://twitter.com/Mapbox'
m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => m.version.to_s }
m.source = {
:git => 'https://github.com/mapbox/mapbox-ios-sdk.git',
:tag => m.version.to_s
}
m.platform = :ios
m.ios.deployment_target = '5.0'
m.requires_arc = true
m.source_files = 'Proj4/proj_api.h', 'MapView/Map/*.{h,c,m}'
m.requires_arc = true
m.prefix_header_file = 'MapView/MapView_Prefix.pch'
m.resource_bundle = { 'Mapbox' => 'MapView/Map/Resources/*' }
m.resource_bundle = {
'Mapbox' => 'MapView/Map/Resources/*'
}
m.documentation_url = 'https://www.mapbox.com/mapbox-ios-sdk'
... ... @@ -30,7 +34,10 @@ Pod::Spec.new do |m|
m.libraries = 'Proj4', 'sqlite3', 'z'
m.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/Mapbox-iOS-SDK/Proj4"' }
m.xcconfig = {
'OTHER_LDFLAGS' => '-ObjC',
'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/Mapbox-iOS-SDK/Proj4"'
}
m.preserve_paths = 'MapView/MapView.xcodeproj', 'MapView/Map/Resources'
... ...