-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLMGeocoderSwift.podspec
28 lines (24 loc) · 1.25 KB
/
LMGeocoderSwift.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
#
# Be sure to run `pod lib lint LMGeocoderSwift.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LMGeocoderSwift'
s.version = '1.0.2'
s.summary = 'Simple wrapper for geocoding and reverse geocoding, using both Google Geocoding API and Apple iOS Geocoding Framework.'
s.description = <<-DESC
Simple wrapper for geocoding and reverse geocoding, written in Swift, using both Google Geocoding API and Apple iOS Geocoding Framework.
DESC
s.homepage = 'https://github.com/lminhtm/LMGeocoderSwift'
s.screenshots = 'https://raw.github.com/lminhtm/LMGeocoderSwift/master/Screenshots/screenshot.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'LMinh' => 'lminhtm@gmail.com' }
s.source = { :git => 'https://github.com/lminhtm/LMGeocoderSwift.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.swift_version = '5.0'
s.source_files = 'LMGeocoderSwift/Classes/**/*'
s.frameworks = 'UIKit', 'CoreLocation', 'Contacts'
end