forked from spoletto/SPGooglePlacesAutocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPGooglePlacesAutocomplete.podspec
22 lines (19 loc) · 1.3 KB
/
SPGooglePlacesAutocomplete.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 = "SPGooglePlacesAutocomplete"
s.version = "1.0.4"
s.summary = "An objective-c wrapper around the Google Places autocomplete API. Includes sample application emulating the Maps app."
s.description = <<-DESC
SPGooglePlacesAutocomplete is a simple objective-c wrapper around the Google Places Autocomplete API.
The API can be used to provide autocomplete functionality for text-based geographic searches, by returning Places such as businesses, addresses, and points of interest as a user types.
SPGooglePlacesAutocomplete also provides support for converting Place results into CLPlacemark objects for easy mapping with MKMapView.
A longer description of dumy in Markdown format.
DESC
s.homepage = "https://github.com/chenyuan/SPGooglePlacesAutocomplete"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Matej Bukovinski" => "[email protected]", "Chris Chen" => "[email protected]" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/chenyuan/SPGooglePlacesAutocomplete.git", :tag => '1.0.4'}
s.source_files = 'SPGooglePlacesAutocomplete/*.{h,m}'
s.frameworks = 'CoreLocation'
s.requires_arc = true
end