forked from natanrolnik/MBPlacePickerController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMBPlacePickerController.podspec
More file actions
19 lines (18 loc) · 1.07 KB
/
Copy pathMBPlacePickerController.podspec
File metadata and controls
19 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "MBPlacePickerController"
s.version = "2.3.1"
s.summary = "An open source place picker for iOS."
s.description = <<-DESC
A view controller for picking a location. I wrote it to be a simple wrapper around automatic location detection, but also to offer manual location selection in case GPS isn't available.
DESC
s.homepage = "https://github.com/MosheBerman/MBPlacePickerController"
s.screenshots = "https://raw.githubusercontent.com/MosheBerman/MBPlacePickerController/master/screenshots/2.2.0/Readme/Default-Dark.png"
s.author = { "Moshe Berman" => "moshberm@gmail.com" }
s.license = 'MIT'
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/MosheBerman/MBPlacePickerController.git", :tag => s.version.to_s}
s.source_files = 'Classes', 'MBPlacePickerController/MBPlacePickerController/**/*.{h,m}'
s.frameworks = 'QuartzCore'
s.weak_framework = 'CoreLocation'
s.requires_arc = true
end