forked from myell0w/MTLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MTLocation.podspec
23 lines (20 loc) · 1.26 KB
/
MTLocation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'MTLocation'
s.version = '0.9.1'
s.platform = :ios
s.summary = 'Convenience-stuff for CoreLocation/MapKit on iOS. Includes a UIBarButtonItem mimicing the ' \
'Locate-Me-Button of the built-in Google Maps App.'
s.homepage = 'https://github.com/myell0w/MTLocation'
s.author = { 'Matthias Tretter' => '[email protected]' }
s.source = { :git => 'https://github.com/myell0w/MTLocation.git', :tag => '0.9' }
s.description = 'These classes aim to mimic some of the functions of the built-in Google Maps App ' \
'on iOS for you. Currently the library contains a simple Location Manager-Singleton ' \
'that sends out notifications when CLLocationManager-Delegate-Methods are called and a ' \
'UIBarButtonItem/UIButton that acts as a Locate-Me Button that behaves similar to the ' \
'one in the Google Maps App. The switch from one mode to another is animated, just like ' \
'in the Google Maps App. It can also be customized to support Heading-Updates or not, ' \
'by setting property headingEnabled.'
s.requires_arc = true
s.source_files = '*.{h,m}'
s.frameworks = 'MapKit', 'CoreLocation'
end