-
Notifications
You must be signed in to change notification settings - Fork 3
/
HLFMapViewController.podspec
23 lines (20 loc) · 1.1 KB
/
HLFMapViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'HLFMapViewController'
s.version = '0.4.0'
s.summary = 'Map modal for searching and selecting a location.'
s.description = <<-DESC
A generic implementation of a common feature: searching
and selecting a nearby location from an MKMapView.
DESC
s.screenshots = [ 'https://dl.dropboxusercontent.com/u/305699/hlf-map-view-controller-1-2.png',
'https://dl.dropboxusercontent.com/u/305699/hlf-map-view-controller-2-2.png' ]
s.homepage = 'https://github.com/hlfcoding/HLFMapViewController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Peng Wang' => '[email protected]' }
s.source = { :git => 'https://github.com/hlfcoding/HLFMapViewController.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hlfcoding'
s.ios.deployment_target = '9.0'
s.source_files = 'Pod/Classes/**/*'
s.resources = 'Pod/Assets/**/*'
s.frameworks = 'UIKit', 'CoreLocation', 'MapKit'
end