forked from hkellaway/HNKGooglePlacesAutocomplete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
HNKGooglePlacesAutocomplete.podspec
29 lines (21 loc) · 1.57 KB
/
HNKGooglePlacesAutocomplete.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.name = "HNKGooglePlacesAutocomplete"
s.version = "1.1.1"
s.summary = "An Objective-C wrapper for the Google Places Autocomplete API"
s.description = "An Objective-C wrapper for the GooglePlaces Autocomplete API. HNKGooglePlacesAutocomplete encapsulates the same core functionality as SPGooglePlacesAutocomplete - autocomplete suggestions and Google Place-to-CLPlacemark translation - with a more modern approach."
s.homepage = "https://github.com/hkellaway/HNKGooglePlacesAutocomplete"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Harlan Kellaway" => "[email protected]" }
s.source = { :git => "https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git", :tag => s.version.to_s }
s.platform = :ios, "7.0"
s.requires_arc = true
s.source_files = 'Pod/Classes/HNKGooglePlacesAutocomplete.{h,m}', 'Pod/Classes/CLPlacemark+HNKAdditions.{h,m}'
s.subspec 'Models' do |ss|
ss.subspec 'Networking' do |sss|
sss.source_files = 'Pod/Classes/HNKGooglePlacesServer.{h,m}'
end
ss.source_files = 'Pod/Classes/HNKGooglePlacesAutocompleteModel.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompleteQuery.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompleteQueryConfig.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompleteQueryResponse.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompletePlace.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompletePlaceSubstring.{h,m}', 'Pod/Classes/HNKGooglePlacesAutocompletePlaceTerm.{h,m}'
end
s.frameworks = 'CoreLocation'
s.dependency "Mantle", "~> 2.0"
end