-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTSOfflineGeocoder.podspec
More file actions
28 lines (25 loc) · 970 Bytes
/
TSOfflineGeocoder.podspec
File metadata and controls
28 lines (25 loc) · 970 Bytes
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
Pod::Spec.new do |s|
s.name = "TSOfflineGeocoder"
s.version = "0.1.6"
s.summary = "Offline reverse geocoder for Objective-c"
s.description = <<-DESC
* Finds locations using strings or coordinates
* No internet required
* Online fallback
* Results from all around the world
* Fast
* Auto complete
* Returns an array of possible results.
DESC
s.homepage = "https://github.com/bnolens/TSOfflineGeocoder"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Benoit Nolens" => "benoit@truestory.io" }
s.source = { :git => "https://github.com/bnolens/TSOfflineGeocoder.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "7.0"
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = "Pod/Classes/lib/"
s.resource_bundles = {
"Database" => ["Pod/Resources/TSOfflineGeocoder_geoData.json"]
}
end