forked from shmidt/GooglePlacesSearchController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGooglePlacesSearchController.podspec
More file actions
19 lines (16 loc) · 958 Bytes
/
Copy pathGooglePlacesSearchController.podspec
File metadata and controls
19 lines (16 loc) · 958 Bytes
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 = "GooglePlacesSearchController"
s.version = "0.2.5"
s.summary = "Autocompleting address search controller, uses Google Maps Autocomplete API. Written in Swift 5."
s.homepage = "https://gitlab.com/curlybracers/GooglePlacesSearchController"
s.screenshots = "https://raw.githubusercontent.com/shmidt/GooglePlacesSearchController/master/Screenshots/view.png", "https://raw.githubusercontent.com/shmidt/GooglePlacesSearchController/master/Screenshots/search.png"
s.license = 'MIT'
s.author = { 'Miroslav Kutak' => 'kutakmiroslav@gmail.com' }
s.swift_version = '5.0'
s.source = { :git => "https://github.com/kutakmir/GooglePlacesSearchController.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resources = 'Pod/Assets/*.png'
end